[pypy-svn] r38565 - pypy/dist/pypy/objspace/cpy

arigo at codespeak.net arigo at codespeak.net
Mon Feb 12 15:48:00 CET 2007


Author: arigo
Date: Mon Feb 12 15:47:59 2007
New Revision: 38565

Modified:
   pypy/dist/pypy/objspace/cpy/objspace.py
Log:
Add a dummy implementation to make test_complete happy.


Modified: pypy/dist/pypy/objspace/cpy/objspace.py
==============================================================================
--- pypy/dist/pypy/objspace/cpy/objspace.py	(original)
+++ pypy/dist/pypy/objspace/cpy/objspace.py	Mon Feb 12 15:47:59 2007
@@ -179,6 +179,9 @@
             buf[i] = p[i]
         return buf.raw
 
+    def unichars_w(self, w_obj):
+        not_implemented_sorry
+
     def call_function(self, w_callable, *args_w):
         args_w += (None,)
         return PyObject_CallFunctionObjArgs(w_callable, *args_w)



More information about the Pypy-commit mailing list