diff options
author | Guido van Rossum <guido@python.org> | 1995-03-29 16:57:48 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-29 16:57:48 +0000 |
commit | 6f9e433ab3520d06fd3bc0c97a6ba49c0d67816d (patch) | |
tree | 0d7aa77f255a4660ce7792da77f84d7441fbafaa /Python/pythonrun.c | |
parent | 07432c0ef60635739151160f626d222bed45cf2c (diff) | |
download | cpython-git-6f9e433ab3520d06fd3bc0c97a6ba49c0d67816d.tar.gz |
fix dusty debugging macros
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 96f385f9e2..734b72b0c4 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -155,7 +155,7 @@ run_tty_loop(fp, filename) for (;;) { ret = run_tty_1(fp, filename); #ifdef REF_DEBUG - fprintf(stderr, "[%ld refs]\n", ref_total); + fprintf(stderr, "[%ld refs]\n", _Py_RefTotal); #endif if (ret == E_EOF) return 0; @@ -664,7 +664,7 @@ goaway(sts) err_clear(); #ifdef REF_DEBUG - fprintf(stderr, "[%ld refs]\n", ref_total); + fprintf(stderr, "[%ld refs]\n", _Py_RefTotal); #endif #ifdef TRACE_REFS |