diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-04-05 18:43:30 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-04-05 18:43:30 (GMT) |
commit | 3b1c01d4b696e2e4c94b6abccd603c617f9b095a (patch) | |
tree | 20c411555630994e8e25c4dc054a41c05027c90c | |
parent | 8e7b4908901e30f594e52d5fdcdc8b4e2d274ff1 (diff) | |
download | cpython-3b1c01d4b696e2e4c94b6abccd603c617f9b095a.zip cpython-3b1c01d4b696e2e4c94b6abccd603c617f9b095a.tar.gz cpython-3b1c01d4b696e2e4c94b6abccd603c617f9b095a.tar.bz2 |
Fixed error in comment for new PY_SSIZE_T_MIN.
-rw-r--r-- | Include/pyport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index e0d9b7d..2bce415 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -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 |