From 6c504400e3c354edd04bba987431e277f5341d12 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 25 Mar 2009 16:24:48 +0100 Subject: [PATCH] enable temp allocation debug comments in test runner --- runtests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtests.py b/runtests.py index d6919440..d1ee8971 100644 --- a/runtests.py +++ b/runtests.py @@ -561,6 +561,8 @@ if __name__ == '__main__': if WITH_CYTHON: from Cython.Compiler.Version import version sys.stderr.write("Running tests against Cython %s\n" % version) + from Cython.Compiler import DebugFlags + DebugFlags.debug_temp_code_comments = 1 else: sys.stderr.write("Running tests without Cython.\n") sys.stderr.write("Python %s\n" % sys.version) -- 2.26.2