[Python-checkins] r43669 - python/trunk/Include/pyport.h

tim.peters python-checkins at python.org
Wed Apr 5 20:43:35 CEST 2006


Author: tim.peters
Date: Wed Apr  5 20:43:30 2006
New Revision: 43669

Modified:
   python/trunk/Include/pyport.h
Log:
Fixed error in comment for new PY_SSIZE_T_MIN.


Modified: python/trunk/Include/pyport.h
==============================================================================
--- python/trunk/Include/pyport.h	(original)
+++ python/trunk/Include/pyport.h	Wed Apr  5 20:43:30 2006
@@ -99,7 +99,7 @@
 
 /* Largest positive value of type Py_ssize_t. */
 #define PY_SSIZE_T_MAX ((Py_ssize_t)(((size_t)-1)>>1))
-/* Smallest positive value of type Py_ssize_t. */
+/* Smallest negative value of type Py_ssize_t. */
 #define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX-1)
 
 /* PY_FORMAT_SIZE_T is a platform-specific modifier for use in a printf


More information about the Python-checkins mailing list