diff options
Diffstat (limited to 'Objects')
| -rw-r--r-- | Objects/object.c | 3 | ||||
| -rw-r--r-- | Objects/rangeobject.c | 1 | 
2 files changed, 4 insertions, 0 deletions
| diff --git a/Objects/object.c b/Objects/object.c index df93a192d6..fa5eb4d11b 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -1509,6 +1509,9 @@ _Py_ReadyTypes(void)  	if (PyType_Ready(&PyStdPrinter_Type) < 0)  		Py_FatalError("Can't initialize StdPrinter"); + +	if (PyType_Ready(&PyRange_Type) < 0) +		Py_FatalError("Can't initialize 'range'");  } diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c index 3a08ccd0f8..e159febdac 100644 --- a/Objects/rangeobject.c +++ b/Objects/rangeobject.c @@ -107,6 +107,7 @@ range_dealloc(rangeobject *r)      Py_DECREF(r->start);      Py_DECREF(r->stop);      Py_DECREF(r->step); +    Py_Type(r)->tp_free(r);  }  /* Return number of items in range (lo, hi, step), when arguments are | 
