summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2007-05-20 08:19:54 +0000
committerWalter Dörwald <walter@livinglogic.de>2007-05-20 08:19:54 +0000
commit215b0c1d5ec4b35456addf0ba15fd7ac3a6f3967 (patch)
tree34cc70ff9bddad407ffd3a66484994768bd13d7c /Objects
parenta86681cd11d43767fa468e072e539bd54c70c7cd (diff)
downloadcpython-215b0c1d5ec4b35456addf0ba15fd7ac3a6f3967.tar.gz
Change range_repr() to use %R for the start/stop/step attributes.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/rangeobject.c36
1 files changed, 6 insertions, 30 deletions
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c
index c5355dfb0b..ad5d2fb3ac 100644
--- a/Objects/rangeobject.c
+++ b/Objects/rangeobject.c
@@ -234,52 +234,28 @@ range_item(rangeobject *r, Py_ssize_t i)
static PyObject *
range_repr(rangeobject *r)
{
- PyObject *start_str = NULL, *stop_str = NULL, *step_str = NULL;
- PyObject *result = NULL;
Py_ssize_t istart, istep;
- /* We always need the stop value. */
- stop_str = PyObject_Str(r->stop);
- if (!stop_str)
- return NULL;
-
- /* XXX(nnorwitz): should we use PyObject_Repr instead of str? */
-
/* Check for special case values for printing. We don't always
need the start or step values. We don't care about errors
(it means overflow), so clear the errors. */
istart = PyNumber_AsSsize_t(r->start, NULL);
if (istart != 0 || (istart == -1 && PyErr_Occurred())) {
PyErr_Clear();
- start_str = PyObject_Str(r->start);
}
istep = PyNumber_AsSsize_t(r->step, NULL);
if (istep != 1 || (istep == -1 && PyErr_Occurred())) {
PyErr_Clear();
- step_str = PyObject_Str(r->step);
}
if (istart == 0 && istep == 1)
- result = PyUnicode_FromFormat("range(%s)",
- PyString_AS_STRING(stop_str));
- else if (istep == 1) {
- if (start_str)
- result = PyUnicode_FromFormat("range(%s, %s)",
- PyString_AS_STRING(start_str),
- PyString_AS_STRING(stop_str));
- }
- else if (start_str && step_str)
- result = PyUnicode_FromFormat("range(%s, %s, %s)",
- PyString_AS_STRING(start_str),
- PyString_AS_STRING(stop_str),
- PyString_AS_STRING(step_str));
- /* else result is NULL and an error should already be set. */
-
- Py_XDECREF(start_str);
- Py_XDECREF(stop_str);
- Py_XDECREF(step_str);
- return result;
+ return PyUnicode_FromFormat("range(%R)", r->stop);
+ else if (istep == 1)
+ return PyUnicode_FromFormat("range(%R, %R)", r->start, r->stop);
+ else
+ return PyUnicode_FromFormat("range(%R, %R, %R)",
+ r->start, r->stop, r->step);
}
static PySequenceMethods range_as_sequence = {