Commit e255319b authored by Guido van Rossum's avatar Guido van Rossum

Use new names for debug macros. Don't include pythonrun.h.

parent 3bca3538
...@@ -37,7 +37,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -37,7 +37,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "compile.h" #include "compile.h"
#include "eval.h" #include "eval.h"
#include "ceval.h" #include "ceval.h"
#include "pythonrun.h"
#include "import.h" #include "import.h"
#include "marshal.h" #include "marshal.h"
...@@ -148,7 +147,7 @@ run_tty_loop(fp, filename) ...@@ -148,7 +147,7 @@ run_tty_loop(fp, filename)
} }
for (;;) { for (;;) {
ret = run_tty_1(fp, filename); ret = run_tty_1(fp, filename);
#ifdef REF_DEBUG #ifdef Py_REF_DEBUG
fprintf(stderr, "[%ld refs]\n", _Py_RefTotal); fprintf(stderr, "[%ld refs]\n", _Py_RefTotal);
#endif #endif
if (ret == E_EOF) if (ret == E_EOF)
...@@ -653,15 +652,15 @@ goaway(sts) ...@@ -653,15 +652,15 @@ goaway(sts)
err_clear(); err_clear();
#ifdef REF_DEBUG #ifdef Py_REF_DEBUG
fprintf(stderr, "[%ld refs]\n", _Py_RefTotal); fprintf(stderr, "[%ld refs]\n", _Py_RefTotal);
#endif #endif
#ifdef TRACE_REFS #ifdef Py_TRACE_REFS
if (askyesno("Print left references?")) { if (askyesno("Print left references?")) {
printrefs(stderr); printrefs(stderr);
} }
#endif /* TRACE_REFS */ #endif /* Py_TRACE_REFS */
#ifdef macintosh #ifdef macintosh
PyMac_Exit(sts); PyMac_Exit(sts);
...@@ -714,7 +713,7 @@ initsigs() ...@@ -714,7 +713,7 @@ initsigs()
initintr(); /* May imply initsignal() */ initintr(); /* May imply initsignal() */
} }
#ifdef TRACE_REFS #ifdef Py_TRACE_REFS
/* Ask a yes/no question */ /* Ask a yes/no question */
int int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment