summaryrefslogtreecommitdiffstats
path: root/Objects/intobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-08-30 03:09:31 (GMT)
committerGuido van Rossum <guido@python.org>2001-08-30 03:09:31 (GMT)
commitd93dce1699ed40efdd2f69c18861eba2fa8806f3 (patch)
tree57874831ca64f0cc515be7c50c00da689eb1d833 /Objects/intobject.c
parent5eef77a21be8a7895419cc84e8bf5554ca908b54 (diff)
downloadcpython-d93dce1699ed40efdd2f69c18861eba2fa8806f3.zip
cpython-d93dce1699ed40efdd2f69c18861eba2fa8806f3.tar.gz
cpython-d93dce1699ed40efdd2f69c18861eba2fa8806f3.tar.bz2
Fix typo: double semicolons.
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r--Objects/intobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c
index 80cdf4b..d1f241d 100644
--- a/Objects/intobject.c
+++ b/Objects/intobject.c
@@ -834,7 +834,7 @@ int_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
if (tmp == NULL)
return NULL;
assert(PyInt_Check(tmp));
- new = type->tp_alloc(type, 0);;
+ new = type->tp_alloc(type, 0);
if (new == NULL)
return NULL;
((PyIntObject *)new)->ob_ival = ((PyIntObject *)tmp)->ob_ival;