[pypy-svn] r48327 - pypy/branch/pypy-rpython-unicode/objspace
fijal at codespeak.net
fijal at codespeak.net
Tue Nov 6 00:54:50 CET 2007
Author: fijal
Date: Tue Nov 6 00:54:49 2007
New Revision: 48327
Modified:
pypy/branch/pypy-rpython-unicode/objspace/descroperation.py
Log:
Dummy descroperations, because otherwise something complains about lack
of those
Modified: pypy/branch/pypy-rpython-unicode/objspace/descroperation.py
==============================================================================
--- pypy/branch/pypy-rpython-unicode/objspace/descroperation.py (original)
+++ pypy/branch/pypy-rpython-unicode/objspace/descroperation.py Tue Nov 6 00:54:49 2007
@@ -291,6 +291,12 @@
if w_del is not None:
space.get_and_call_function(w_del, w_obj)
+ def unichr(space, w_obj):
+ raise NotImplementedError
+
+ def unicode(space, w_obj):
+ raise NotImplementedError
+
def cmp(space, w_v, w_w):
if space.is_w(w_v, w_w):
More information about the pypy-svn
mailing list