##// END OF EJS Templates
Remove cProfile fallback import, since it was added in Python2.5
Terry Davis -
Show More
@@ -19,16 +19,8 b' import math'
19 19 import re
20 20 from pdb import Restart
21 21
22 # cProfile was added in Python2.5
23 try:
24 import cProfile as profile
25 import pstats
26 except ImportError:
27 # profile isn't bundled by default in Debian for license reasons
28 try:
29 import profile, pstats
30 except ImportError:
31 profile = pstats = None
22 import cProfile as profile
23 import pstats
32 24
33 25 from IPython.core import oinspect
34 26 from IPython.core import magic_arguments
General Comments 0
You need to be logged in to leave comments. Login now