rename printrefs, getobjects to _Py_ prefix

This commit is contained in:
Guido van Rossum 1996-05-24 20:48:31 +00:00
parent 363078afa4
commit ded690fc35
3 changed files with 7 additions and 5 deletions

View file

@ -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;
{