[pypy-svn] r73367 - pypy/branch/cpython-extension/pypy/module/cpyext/include

xoraxax at codespeak.net xoraxax at codespeak.net
Sun Apr 4 19:20:33 CEST 2010


Author: xoraxax
Date: Sun Apr  4 19:20:31 2010
New Revision: 73367

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/include/tupleobject.h
Log:
Add define for PyTuple_SET_ITEM.

Modified: pypy/branch/cpython-extension/pypy/module/cpyext/include/tupleobject.h
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/include/tupleobject.h	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/include/tupleobject.h	Sun Apr  4 19:20:31 2010
@@ -10,6 +10,8 @@
 /* defined in varargswrapper.c */
 PyObject * PyTuple_Pack(Py_ssize_t, ...);
 
+#define PyTuple_SET_ITEM PyTuple_SetItem
+
 #ifdef __cplusplus
 }
 #endif



More information about the Pypy-commit mailing list