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

jandem at codespeak.net jandem at codespeak.net
Sat Apr 10 16:04:55 CEST 2010


Author: jandem
Date: Sat Apr 10 16:04:53 2010
New Revision: 73622

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/api.py
Log:
Add PyNotImplemented_Type to GLOBALS as well


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:04:53 2010
@@ -253,6 +253,7 @@
         "Unicode": "space.w_unicode",
         'Bool': 'space.w_bool',
         'None': 'space.type(space.w_None)',
+        'NotImplemented': 'space.w_NotImplemented',
         }.items():
     GLOBALS['Py%s_Type#' % (cpyname, )] = ('PyTypeObject*', pypyexpr)
 



More information about the Pypy-commit mailing list