[Python-checkins] r55843 - python/trunk/PC/pyconfig.h

martin.v.loewis python-checkins at python.org
Sat Jun 9 09:58:07 CEST 2007


Author: martin.v.loewis
Date: Sat Jun  9 09:58:05 2007
New Revision: 55843

Modified:
   python/trunk/PC/pyconfig.h
Log:
Fix Windows build.


Modified: python/trunk/PC/pyconfig.h
==============================================================================
--- python/trunk/PC/pyconfig.h	(original)
+++ python/trunk/PC/pyconfig.h	Sat Jun  9 09:58:05 2007
@@ -277,7 +277,7 @@
 #	define PY_LONG_LONG __int64
 #	define PY_LLONG_MAX LLONG_MAX
 #	define PY_LLONG_MIN LLONG_MIN
-#	define PY_ULLONG_MIN ULLONG_MIN
+#	define PY_ULLONG_MAX ULLONG_MAX
 #endif
 
 /* For Windows the Python core is in a DLL by default.  Test


More information about the Python-checkins mailing list