[pypy-svn] rev 729 - pypy/trunk/src/pypy/objspace/std

arigo at codespeak.net arigo at codespeak.net
Fri May 30 13:52:17 CEST 2003


Author: arigo
Date: Fri May 30 13:52:17 2003
New Revision: 729

Modified:
   pypy/trunk/src/pypy/objspace/std/cpythonobject.py
Log:
forgot the register() of is_true

Modified: pypy/trunk/src/pypy/objspace/std/cpythonobject.py
==============================================================================
--- pypy/trunk/src/pypy/objspace/std/cpythonobject.py	(original)
+++ pypy/trunk/src/pypy/objspace/std/cpythonobject.py	Fri May 30 13:52:17 2003
@@ -168,6 +168,8 @@
     except:
         wrap_exception(space)
 
+StdObjSpace.is_true.register(cpython_is_true, W_CPythonObject)
+
 
 # slicing
 def old_slice(index):


More information about the Pypy-commit mailing list