summaryrefslogtreecommitdiffstats
path: root/Objects/rangeobject.c
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-11-04 11:47:05 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2012-11-04 11:47:05 (GMT)
commit1321edaa55a8df94e739e6ea5e9e658f2b7bfcc2 (patch)
tree987c8b62c47466683905620c7574bc7b2e3f37a9 /Objects/rangeobject.c
parent7ce22d19403873d590bdda78b721e15510132d16 (diff)
parent8cd1c7681d86fd3d32096f2d927d3f5014d58c36 (diff)
downloadcpython-1321edaa55a8df94e739e6ea5e9e658f2b7bfcc2.zip
cpython-1321edaa55a8df94e739e6ea5e9e658f2b7bfcc2.tar.gz
cpython-1321edaa55a8df94e739e6ea5e9e658f2b7bfcc2.tar.bz2
Issue #16402: Merge fix from 3.2
Diffstat (limited to 'Objects/rangeobject.c')
-rw-r--r--Objects/rangeobject.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c
index 68d5636..214b455 100644
--- a/Objects/rangeobject.c
+++ b/Objects/rangeobject.c
@@ -331,11 +331,11 @@ compute_slice_element(PyObject *obj)
if (PyIndex_Check(obj)) {
result = PyNumber_Index(obj);
}
- }
- if (result == NULL) {
- PyErr_SetString(PyExc_TypeError,
- "slice indices must be integers or "
- "None or have an __index__ method");
+ else {
+ PyErr_SetString(PyExc_TypeError,
+ "slice indices must be integers or "
+ "None or have an __index__ method");
+ }
}
return result;
}