[pypy-svn] r73625 - pypy/branch/cpython-extension/pypy/module/cpyext

jandem at codespeak.net jandem at codespeak.net
Sat Apr 10 16:24:23 CEST 2010


Author: jandem
Date: Sat Apr 10 16:24:21 2010
New Revision: 73625

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/api.py
Log:
Argh forgot CTRL+S


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/api.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/api.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/api.py	Sat Apr 10 16:24:21 2010
@@ -239,7 +239,7 @@
     '_Py_NoneStruct#': ('PyObject*', 'space.w_None'),
     '_Py_TrueStruct#': ('PyObject*', 'space.w_True'),
     '_Py_ZeroStruct#': ('PyObject*', 'space.w_False'),
-    '_Py_NotImplementedStruct#': ('PyObject*', 'space.w_False'),
+    '_Py_NotImplementedStruct#': ('PyObject*', 'space.w_NotImplemented'),
     }
 INIT_FUNCTIONS = []
 



More information about the Pypy-commit mailing list