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

fijal at codespeak.net fijal at codespeak.net
Tue Apr 6 05:55:42 CEST 2010


Author: fijal
Date: Tue Apr  6 05:55:40 2010
New Revision: 73442

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/api.py
Log:
disable the va_get_xxx since nobody uses them any more. They're however a
feature that we might need at some point


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	Tue Apr  6 05:55:40 2010
@@ -278,10 +278,11 @@
     (("buffer", rffi.VOIDP), ("size", Py_ssize_t)))
 cpython_struct("PyUnicodeObject", PyUnicodeObjectFields, PyUnicodeObjectStruct)
 
-VA_TP_LIST = {'int': lltype.Signed,
-              'PyObject*': PyObject,
-              'PyObject**': PyObjectP,
-              'int*': rffi.INTP}
+VA_TP_LIST = {}
+#{'int': lltype.Signed,
+#              'PyObject*': PyObject,
+#              'PyObject**': PyObjectP,
+#              'int*': rffi.INTP}
 
 def configure_types():
     for name, TYPE in rffi_platform.configure(CConfig).iteritems():



More information about the Pypy-commit mailing list