diff options
author | Guido van Rossum <guido@python.org> | 1996-05-24 20:48:31 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-05-24 20:48:31 (GMT) |
commit | ded690fc351ecaf0f72429107fa726a9916ab0f6 (patch) | |
tree | b6ca2ff8824904551be9dca89bc9c5e77a938002 /Objects | |
parent | 363078afa4ef9a8f2fdd327a988ef883bb850eb3 (diff) | |
download | cpython-ded690fc351ecaf0f72429107fa726a9916ab0f6.zip cpython-ded690fc351ecaf0f72429107fa726a9916ab0f6.tar.gz cpython-ded690fc351ecaf0f72429107fa726a9916ab0f6.tar.bz2 |
rename printrefs, getobjects to _Py_ prefix
Diffstat (limited to 'Objects')
-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 747657c..7994389 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; { |