From 8a58021f70ab5b6b13835ac310a91d4cd0410e5b Mon Sep 17 00:00:00 2001 From: Greg Noel Date: Tue, 9 Sep 2008 23:44:59 +0000 Subject: Issue 1913: use cProfile instead of profile if available --- src/engine/SCons/Script/Main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/engine/SCons/Script/Main.py b/src/engine/SCons/Script/Main.py index 96b18a4..4a4dd84 100644 --- a/src/engine/SCons/Script/Main.py +++ b/src/engine/SCons/Script/Main.py @@ -1186,7 +1186,10 @@ def _exec_main(parser, values): import pdb pdb.Pdb().runcall(_main, parser) elif options.profile_file: - from profile import Profile + try: + from cProfile import Profile + except ImportError, e: + from profile import Profile # Some versions of Python 2.4 shipped a profiler that had the # wrong 'c_exception' entry in its dispatch table. Make sure -- cgit v0.12