diff options
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 54d0ddd..9564267 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -664,9 +664,9 @@ sys_getsizeof(PyObject *self, PyObject *args) return PyObject_CallFunctionObjArgs(method, args, NULL); } /* Instance of old-style classes */ - else if(PyInstance_Check(args)) + else if (PyInstance_Check(args)) return PyInt_FromSsize_t(PyInstance_Type.tp_basicsize); - /* Old-style class */ + /* Old-style classes */ else if (PyClass_Check(args)) return PyInt_FromSsize_t(PyClass_Type.tp_basicsize); else |