diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-31 04:32:55 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-31 04:32:55 (GMT) |
commit | 1fe5f388529dcdf674d53f7d67abc16c9c6ca5e5 (patch) | |
tree | b35d6a88c4ded09687f9916e4d4c0b03bafde580 /Objects/sliceobject.c | |
parent | 538d17aa233e99a0652d0c6d482845e8e909b6e0 (diff) | |
download | cpython-1fe5f388529dcdf674d53f7d67abc16c9c6ca5e5.zip cpython-1fe5f388529dcdf674d53f7d67abc16c9c6ca5e5.tar.gz cpython-1fe5f388529dcdf674d53f7d67abc16c9c6ca5e5.tar.bz2 |
Remove checking redundantly for checks of PyInt and PyLong.
Diffstat (limited to 'Objects/sliceobject.c')
-rw-r--r-- | Objects/sliceobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/sliceobject.c b/Objects/sliceobject.c index eb66c79..d160b07 100644 --- a/Objects/sliceobject.c +++ b/Objects/sliceobject.c @@ -106,7 +106,7 @@ PySlice_GetIndices(PySliceObject *r, Py_ssize_t length, if (r->step == Py_None) { *step = 1; } else { - if (!PyInt_Check(r->step) && !PyLong_Check(r->step)) return -1; + if (!PyLong_Check(r->step)) return -1; *step = PyInt_AsSsize_t(r->step); } if (r->start == Py_None) { |