[Python-3000-checkins] r56479 - python/branches/p3yk/Include/Python.h

martin.v.loewis python-3000-checkins at python.org
Sat Jul 21 10:06:56 CEST 2007


Author: martin.v.loewis
Date: Sat Jul 21 10:06:55 2007
New Revision: 56479

Modified:
   python/branches/p3yk/Include/Python.h
Log:
Add longintrepr.h to Python.h, so that the compiler can
see that PyFalse is really some kind of PyObject*.


Modified: python/branches/p3yk/Include/Python.h
==============================================================================
--- python/branches/p3yk/Include/Python.h	(original)
+++ python/branches/p3yk/Include/Python.h	Sat Jul 21 10:06:55 2007
@@ -67,8 +67,9 @@
 #include "bytesobject.h"
 #include "unicodeobject.h"
 #include "intobject.h"
-#include "boolobject.h"
 #include "longobject.h"
+#include "longintrepr.h"
+#include "boolobject.h"
 #include "floatobject.h"
 #ifndef WITHOUT_COMPLEX
 #include "complexobject.h"


More information about the Python-3000-checkins mailing list