[pypy-svn] r16300 - pypy/dist/pypy/objspace/std

tismer at codespeak.net tismer at codespeak.net
Tue Aug 23 17:51:53 CEST 2005


Author: tismer
Date: Tue Aug 23 17:51:51 2005
New Revision: 16300

Modified:
   pypy/dist/pypy/objspace/std/unicodeobject.py
Log:
removed unwrap, for some reason it is seen, now.
Let's compile and see where it is used.

Modified: pypy/dist/pypy/objspace/std/unicodeobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/unicodeobject.py	(original)
+++ pypy/dist/pypy/objspace/std/unicodeobject.py	Tue Aug 23 17:51:51 2005
@@ -21,10 +21,10 @@
         """ representation for debugging purposes """
         return "%s(%r)" % (w_self.__class__.__name__, w_self._value)
 
-    def unwrap(w_self):
-        # For faked functions taking unicodearguments.
-        # Remove when we no longer need faking.
-        return u''.join(w_self._value)
+##    def unwrap(w_self):
+##        # For faked functions taking unicodearguments.
+##        # Remove when we no longer need faking.
+##        return u''.join(w_self._value)
 
 registerimplementation(W_UnicodeObject)
 



More information about the Pypy-commit mailing list