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

fijal at codespeak.net fijal at codespeak.net
Tue Apr 6 07:26:40 CEST 2010


Author: fijal
Date: Tue Apr  6 07:26:39 2010
New Revision: 73445

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/include/stringobject.h
Log:
one more define


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/include/stringobject.h
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/include/stringobject.h	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/include/stringobject.h	Tue Apr  6 07:26:39 2010
@@ -7,6 +7,7 @@
 extern "C" {
 #endif
 
+#define PyString_GET_SIZE(op) PyString_Size(op)
 #define PyString_AS_STRING(op) PyString_AsString(op)
 
 typedef struct {



More information about the Pypy-commit mailing list