diff options
author | Guido van Rossum <guido@python.org> | 1996-05-24 20:48:31 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-05-24 20:48:31 +0000 |
commit | 654d2dc31e33926427ff9a49b9fd49b2c81b9868 (patch) | |
tree | e5acace3974e007ada9cde5e7184426783bcba8e /Python/pythonrun.c | |
parent | 449167cbbcf19d8cccc52f010f121f487cb8f6e3 (diff) | |
download | cpython-654d2dc31e33926427ff9a49b9fd49b2c81b9868.tar.gz |
rename printrefs, getobjects to _Py_ prefix
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index c789881adc..1da9d9e45e 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -658,7 +658,7 @@ goaway(sts) #ifdef Py_TRACE_REFS if (askyesno("Print left references?")) { - printrefs(stderr); + _Py_PrintReferences(stderr); } #endif /* Py_TRACE_REFS */ |