From: Stefan Behnel Date: Wed, 25 Mar 2009 15:24:48 +0000 (+0100) Subject: enable temp allocation debug comments in test runner X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6c504400e3c354edd04bba987431e277f5341d12;p=cython.git enable temp allocation debug comments in test runner --- 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)