~ubuntu-branches/ubuntu/karmic/pypy/karmic

« back to all changes in this revision

Viewing changes to pypy/objspace/std/objectobject.py

  • Committer: Bazaar Package Importer
  • Author(s): Alexandre Fayolle
  • Date: 2007-04-13 09:33:09 UTC
  • Revision ID: james.westby@ubuntu.com-20070413093309-yoojh4jcoocu2krz
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from pypy.objspace.std.objspace import *
 
2
 
 
3
 
 
4
class W_ObjectObject(W_Object):
 
5
    """Instances of this class are what the user can directly see with an
 
6
    'object()' call."""
 
7
    from pypy.objspace.std.objecttype import object_typedef as typedef
 
8
 
 
9
# ____________________________________________________________
 
10
 
 
11
 
 
12
register_all(vars())