From: Alexander Belopolsky Date: Wed, 21 Jul 2010 17:50:34 +0000 (+0000) Subject: Merged revisions 83035 via svnmerge from X-Git-Tag: v3.1.3rc1~478 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eeec92fd8abf5c5810f3e6d93178c7bbb5e479ec;p=python Merged revisions 83035 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83035 | alexander.belopolsky | 2010-07-21 13:43:42 -0400 (Wed, 21 Jul 2010) | 3 lines Issue #9323: Fixed a bug in trace.py that resulted in loosing the name of the script being traced. Patch by Eli Bendersky. ........ --- diff --git a/Lib/trace.py b/Lib/trace.py index c0cca9d060..49ad7a8cb7 100644 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -797,12 +797,9 @@ def main(argv=None): ignoredirs=ignore_dirs, infile=counts_file, outfile=counts_file, timing=timing) try: - fp = open(progname) - try: - script = fp.read() - finally: - fp.close() - t.run('exec(%r)' % (script,)) + with open(progname) as fp: + code = compile(fp.read(), progname, 'exec') + t.run(code) except IOError as err: _err_exit("Cannot run file %r because: %s" % (sys.argv[0], err)) except SystemExit: diff --git a/Misc/NEWS b/Misc/NEWS index 57998e371f..7f3f0e1bd7 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -78,6 +78,9 @@ C-API Library ------- +- Issue #9323: Fixed a bug in trace.py that resulted in loosing the + name of the script being traced. Patch by Eli Bendersky. + - Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli Bendersky for the patch. diff --git a/Misc/maintainers.rst b/Misc/maintainers.rst index 7795eb06e7..b9984b118e 100644 --- a/Misc/maintainers.rst +++ b/Misc/maintainers.rst @@ -212,7 +212,7 @@ timeit tkinter gpolo token georg.brandl tokenize -trace +trace alexander.belopolsky traceback georg.brandl tty turtle gregorlingl