diff options
Diffstat (limited to 'Lib/cProfile.py')
-rwxr-xr-x | Lib/cProfile.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Lib/cProfile.py b/Lib/cProfile.py index d10b7ab9f7..ae16277bcb 100755 --- a/Lib/cProfile.py +++ b/Lib/cProfile.py @@ -180,7 +180,12 @@ def main(): if (len(sys.argv) > 0): sys.path.insert(0, os.path.dirname(sys.argv[0])) - run('execfile(%r)' % (sys.argv[0],), options.outfile, options.sort) + fp = open(sys.argv[0]) + try: + script = fp.read() + finally: + fp.close() + run('exec(%r)' % script, options.outfile, options.sort) else: parser.print_usage() return parser |