summaryrefslogtreecommitdiffstats
path: root/Include/rangeobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-12-21 22:50:31 (GMT)
committerGuido van Rossum <guido@python.org>1993-12-21 22:50:31 (GMT)
commit7d6aa51b56c6337ad5b1cb880f7c075290777f51 (patch)
treef178129af702b8adcb635ceac5ab9779925a7b64 /Include/rangeobject.h
parentc4f169cc5a990c9015782733b26bca4b2616ac24 (diff)
downloadcpython-7d6aa51b56c6337ad5b1cb880f7c075290777f51.zip
cpython-7d6aa51b56c6337ad5b1cb880f7c075290777f51.tar.gz
cpython-7d6aa51b56c6337ad5b1cb880f7c075290777f51.tar.bz2
* rangeobject.[ch], bltinmodule.c: incorporate new version of range
object (unchanged from source except "range" -> "xrange").
Diffstat (limited to 'Include/rangeobject.h')
-rw-r--r--Include/rangeobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/rangeobject.h b/Include/rangeobject.h
index f2d6788..39d20c6 100644
--- a/Include/rangeobject.h
+++ b/Include/rangeobject.h
@@ -38,4 +38,4 @@ extern typeobject Rangetype;
#define is_rangeobject(op) ((op)->ob_type == &Rangetype)
-extern object *newrangeobject PROTO((long, long, long));
+extern object *newrangeobject PROTO((long, long, long, int));