diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-05-10 10:19:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-10 10:19:41 (GMT) |
commit | 2ddf5a19c3a06978edff2c8ba0aaf5df3528204a (patch) | |
tree | 8a4b6f0ae35ee772702912050fd252b9e360c482 /Python/ceval.c | |
parent | 305ccbe27ea5ba82fd2d8c32ec739f980e524330 (diff) | |
download | cpython-2ddf5a19c3a06978edff2c8ba0aaf5df3528204a.zip cpython-2ddf5a19c3a06978edff2c8ba0aaf5df3528204a.tar.gz cpython-2ddf5a19c3a06978edff2c8ba0aaf5df3528204a.tar.bz2 |
bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480)
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 afd305c..23fd088 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -4889,7 +4889,7 @@ do_call_core(PyObject *func, PyObject *callargs, PyObject *kwdict) /* 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. + and silently boost values less than PY_SSIZE_T_MIN to PY_SSIZE_T_MIN. Return 0 on error, 1 on success. */ int |