Fixed error in comment for new PY_SSIZE_T_MIN.

This commit is contained in:
Tim Peters 2006-04-05 18:43:30 +00:00
parent 8e7b490890
commit 3b1c01d4b6
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ typedef Py_intptr_t Py_ssize_t;
/* 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