From 3b1c01d4b696e2e4c94b6abccd603c617f9b095a Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Wed, 5 Apr 2006 18:43:30 +0000 Subject: [PATCH] Fixed error in comment for new PY_SSIZE_T_MIN. --- Include/pyport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pyport.h b/Include/pyport.h index e0d9b7db584..2bce415c5c0 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