[Python-checkins] r64132 - python/trunk/Include/Python.h

gregory.p.smith python-checkins at python.org
Wed Jun 11 20:00:52 CEST 2008


Author: gregory.p.smith
Date: Wed Jun 11 20:00:52 2008
New Revision: 64132

Log:
Correct an incorrect comment about our #include of stddef.h.
(see Doug Evans' comment on python-dev 2008-06-10)


Modified:
   python/trunk/Include/Python.h

Modified: python/trunk/Include/Python.h
==============================================================================
--- python/trunk/Include/Python.h	(original)
+++ python/trunk/Include/Python.h	Wed Jun 11 20:00:52 2008
@@ -44,7 +44,7 @@
 #include <unistd.h>
 #endif
 
-/* For uintptr_t, intptr_t */
+/* For size_t? */
 #ifdef HAVE_STDDEF_H
 #include <stddef.h>
 #endif


More information about the Python-checkins mailing list