diff options
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r-- | Objects/intobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c index 2cda031..1b852c2 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -113,7 +113,7 @@ PyInt_FromLong(long ival) if ((free_list = fill_free_list()) == NULL) return NULL; } - /* PyObject_New is inlined */ + /* Inline PyObject_New */ v = free_list; free_list = (PyIntObject *)v->ob_type; PyObject_INIT(v, &PyInt_Type); |