[Python-checkins] python/dist/src/Include structmember.h,2.22,2.23
loewis at users.sourceforge.net
loewis at users.sourceforge.net
Fri Mar 4 00:00:52 CET 2005
Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14423/Include
Modified Files:
structmember.h
Log Message:
Patch #1115086: support PY_LONGLONG in structmember.
Index: structmember.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/structmember.h,v
retrieving revision 2.22
retrieving revision 2.23
diff -u -d -r2.22 -r2.23
--- structmember.h 10 Feb 2004 16:50:18 -0000 2.22
+++ structmember.h 3 Mar 2005 23:00:20 -0000 2.23
@@ -65,6 +65,10 @@
#define T_OBJECT_EX 16 /* Like T_OBJECT, but raises AttributeError
when the value is NULL, instead of
converting to None. */
+#ifdef HAVE_LONG_LONG
+#define T_LONGLONG 17
+#define T_ULONGLONG 18
+#endif /* HAVE_LONG_LONG */
/* Flags */
#define READONLY 1
More information about the Python-checkins
mailing list