diff options
author | Guido van Rossum <guido@python.org> | 1993-11-01 16:21:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-11-01 16:21:44 (GMT) |
commit | 2586bf0a3434fc0430b6c16a56ad2b950eabc589 (patch) | |
tree | e16eef17c5be42833c891b22be5fbb4ef0ef3209 /Include/rangeobject.h | |
parent | 0667626694cf1d7232d3142aef645ecb2d8680c0 (diff) | |
download | cpython-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.h | 2 |
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)); |