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"
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to