summaryrefslogtreecommitdiffstats
path: root/Include/rangeobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-11-01 16:21:44 (GMT)
committerGuido van Rossum <guido@python.org>1993-11-01 16:21:44 (GMT)
commit2586bf0a3434fc0430b6c16a56ad2b950eabc589 (patch)
treee16eef17c5be42833c891b22be5fbb4ef0ef3209 /Include/rangeobject.h
parent0667626694cf1d7232d3142aef645ecb2d8680c0 (diff)
downloadcpython-2586bf0a3434fc0430b6c16a56ad2b950eabc589.zip
cpython-2586bf0a3434fc0430b6c16a56ad2b950eabc589.tar.gz
cpython-2586bf0a3434fc0430b6c16a56ad2b950eabc589.tar.bz2
* rangeobject.{c,h}, bltinmodule.c: removed non-essential ops from range
object.
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 39d20c6..f2d6788 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, int));
+extern object *newrangeobject PROTO((long, long, long));