commit | 2586bf0a3434fc0430b6c16a56ad2b950eabc589 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Nov 01 16:21:44 1993 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Nov 01 16:21:44 1993 +0000 |
tree | e16eef17c5be42833c891b22be5fbb4ef0ef3209 | |
parent | 0667626694cf1d7232d3142aef645ecb2d8680c0 [diff] [blame] |
* rangeobject.{c,h}, bltinmodule.c: removed non-essential ops from range object.
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 @@ #define is_rangeobject(op) ((op)->ob_type == &Rangetype) -extern object *newrangeobject PROTO((long, long, long, int)); +extern object *newrangeobject PROTO((long, long, long));