diff options
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/object.c b/Objects/object.c index 747657cd22..79943897bc 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -525,7 +525,7 @@ DELREF(op) (*dealloc)(op); } -printrefs(fp) +_Py_PrintReferences(fp) FILE *fp; { object *op; @@ -541,7 +541,7 @@ printrefs(fp) } PyObject * -getobjects(self, args) +_Py_GetObjects(self, args) PyObject *self; PyObject *args; { |