diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-17 08:14:30 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-17 08:14:30 (GMT) |
commit | 483405bcca9f371bc6910dda7f9b5ba74395682c (patch) | |
tree | 3afeb1990bf2ab9d24fdea4409317a08a97af7eb /Python/ceval.c | |
parent | 77c041ba64f87ac021c2a7a9314d9a3a1145057f (diff) | |
download | cpython-483405bcca9f371bc6910dda7f9b5ba74395682c.zip cpython-483405bcca9f371bc6910dda7f9b5ba74395682c.tar.gz cpython-483405bcca9f371bc6910dda7f9b5ba74395682c.tar.bz2 |
Issue #22883: Got rid of outdated references to PyInt and PyString in comments.
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index e09ff34..5cefdcf 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -4606,7 +4606,7 @@ ext_call_fail: return result; } -/* Extract a slice index from a PyInt or PyLong or an object with the +/* Extract a slice index from a PyLong or an object with the nb_index slot defined, and store in *pi. Silently reduce values larger than PY_SSIZE_T_MAX to PY_SSIZE_T_MAX, and silently boost values less than -PY_SSIZE_T_MAX-1 to -PY_SSIZE_T_MAX-1. |