[pypy-svn] r48451 - pypy/branch/pypy-rpython-unicode/interpreter

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Nov 8 22:38:12 CET 2007


Author: cfbolz
Date: Thu Nov  8 22:38:11 2007
New Revision: 48451

Modified:
   pypy/branch/pypy-rpython-unicode/interpreter/baseobjspace.py
Log:
remove unicode and unichr from the list of base space operations


Modified: pypy/branch/pypy-rpython-unicode/interpreter/baseobjspace.py
==============================================================================
--- pypy/branch/pypy-rpython-unicode/interpreter/baseobjspace.py	(original)
+++ pypy/branch/pypy-rpython-unicode/interpreter/baseobjspace.py	Thu Nov  8 22:38:11 2007
@@ -910,8 +910,6 @@
     ('issubtype',       'issubtype', 2, []),  # not for old-style classes
     ('repr',            'repr',      1, ['__repr__']),
     ('str',             'str',       1, ['__str__']),
-    ('unichr',          'unichr',    1, []),
-    ('unicode',         'unicode',   1, ['__unicode__']),
     ('len',             'len',       1, ['__len__']),
     ('hash',            'hash',      1, ['__hash__']),
     ('getattr',         'getattr',   2, ['__getattribute__']),



More information about the Pypy-commit mailing list