##// END OF EJS Templates
Kirill Smelkov patch: try to use 'cProfile' instead of the slower pure python 'profile' module
vivainio -
Show More
@@ -1,7 +1,7 b''
1 1 # -*- coding: utf-8 -*-
2 2 """Magic functions for InteractiveShell.
3 3
4 $Id: Magic.py 1922 2006-11-21 20:56:48Z vivainio $"""
4 $Id: Magic.py 1927 2006-11-24 15:37:21Z vivainio $"""
5 5
6 6 #*****************************************************************************
7 7 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
@@ -36,11 +36,16 b' from cStringIO import StringIO'
36 36 from getopt import getopt,GetoptError
37 37 from pprint import pprint, pformat
38 38
39 # profile isn't bundled by default in Debian for license reasons
39 # cProfile was added in Python2.5
40 40 try:
41 import profile,pstats
41 import cProfile as profile
42 import pstats
42 43 except ImportError:
43 profile = pstats = None
44 # profile isn't bundled by default in Debian for license reasons
45 try:
46 import profile,pstats
47 except ImportError:
48 profile = pstats = None
44 49
45 50 # Homebrewed
46 51 import IPython
@@ -438,11 +438,15 b' Profiler support.'
438 438 profile.run()
439 439 \family default
440 440 ) or complete programs under the profiler's control.
441 While this is possible with the standard
441 While this is possible with standard
442 \family typewriter
443 cProfile
444 \family default
445 or
442 446 \family typewriter
443 447 profile
444 448 \family default
445 module, IPython wraps this functionality with magic commands (see
449 modules, IPython wraps this functionality with magic commands (see
446 450 \family typewriter
447 451 `%prun'
448 452 \family default
General Comments 0
You need to be logged in to leave comments. Login now