mirror of
https://github.com/python/cpython.git
synced 2026-01-02 13:33:44 +00:00
svn+ssh://pythondev@svn.python.org/python/trunk ........ r59606 | georg.brandl | 2007-12-29 11:57:00 +0100 (Sat, 29 Dec 2007) | 2 lines Some cleanup in the docs. ........ r59611 | martin.v.loewis | 2007-12-29 19:49:21 +0100 (Sat, 29 Dec 2007) | 2 lines Bug #1699: Define _BSD_SOURCE only on OpenBSD. ........ r59612 | raymond.hettinger | 2007-12-29 23:09:34 +0100 (Sat, 29 Dec 2007) | 1 line Simpler documentation for itertools.tee(). Should be backported. ........ r59613 | raymond.hettinger | 2007-12-29 23:16:24 +0100 (Sat, 29 Dec 2007) | 1 line Improve docs for itertools.groupby(). The use of xrange(0) to create a unique object is less obvious than object(). ........ r59620 | christian.heimes | 2007-12-31 15:47:07 +0100 (Mon, 31 Dec 2007) | 3 lines Added wininst-9.0.exe executable for VS 2008 Integrated bdist_wininst into PCBuild9 directory ........ r59621 | christian.heimes | 2007-12-31 15:51:18 +0100 (Mon, 31 Dec 2007) | 1 line Moved PCbuild directory to PC/VS7.1 ........ r59622 | christian.heimes | 2007-12-31 15:59:26 +0100 (Mon, 31 Dec 2007) | 1 line Fix paths for build bot ........ r59623 | christian.heimes | 2007-12-31 16:02:41 +0100 (Mon, 31 Dec 2007) | 1 line Fix paths for build bot, part 2 ........ r59624 | christian.heimes | 2007-12-31 16:18:55 +0100 (Mon, 31 Dec 2007) | 1 line Renamed PCBuild9 directory to PCBuild ........
92 lines
6.9 KiB
Text
92 lines
6.9 KiB
Text
test_cProfile
|
|
124 function calls (104 primitive calls) in 1.000 CPU seconds
|
|
|
|
Ordered by: standard name
|
|
|
|
ncalls tottime percall cumtime percall filename:lineno(function)
|
|
1 0.000 0.000 1.000 1.000 <string>:1(<module>)
|
|
2 0.000 0.000 0.000 0.000 io.py:1212(flush)
|
|
1 0.000 0.000 0.000 0.000 io.py:269(flush)
|
|
1 0.000 0.000 0.000 0.000 io.py:656(closed)
|
|
1 0.000 0.000 0.000 0.000 io.py:874(flush)
|
|
8 0.064 0.008 0.080 0.010 test_cProfile.py:103(subhelper)
|
|
28 0.028 0.001 0.028 0.001 test_cProfile.py:115(__getattr__)
|
|
1 0.270 0.270 1.000 1.000 test_cProfile.py:30(testfunc)
|
|
23/3 0.150 0.007 0.170 0.057 test_cProfile.py:40(factorial)
|
|
20 0.020 0.001 0.020 0.001 test_cProfile.py:53(mul)
|
|
2 0.040 0.020 0.600 0.300 test_cProfile.py:60(helper)
|
|
4 0.116 0.029 0.120 0.030 test_cProfile.py:78(helper1)
|
|
2 0.000 0.000 0.140 0.070 test_cProfile.py:89(helper2_indirect)
|
|
8 0.312 0.039 0.400 0.050 test_cProfile.py:93(helper2)
|
|
1 0.000 0.000 1.000 1.000 {exec}
|
|
12 0.000 0.000 0.012 0.001 {hasattr}
|
|
4 0.000 0.000 0.000 0.000 {method 'append' of 'list' objects}
|
|
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
|
|
4 0.000 0.000 0.000 0.000 {sys.exc_info}
|
|
|
|
|
|
Ordered by: standard name
|
|
|
|
Function called...
|
|
ncalls tottime cumtime
|
|
<string>:1(<module>) -> 1 0.270 1.000 test_cProfile.py:30(testfunc)
|
|
io.py:1212(flush) -> 1 0.000 0.000 io.py:269(flush)
|
|
1 0.000 0.000 io.py:874(flush)
|
|
io.py:269(flush) ->
|
|
io.py:656(closed) ->
|
|
io.py:874(flush) -> 1 0.000 0.000 io.py:656(closed)
|
|
test_cProfile.py:103(subhelper) -> 16 0.016 0.016 test_cProfile.py:115(__getattr__)
|
|
test_cProfile.py:115(__getattr__) ->
|
|
test_cProfile.py:30(testfunc) -> 1 0.014 0.130 test_cProfile.py:40(factorial)
|
|
2 0.040 0.600 test_cProfile.py:60(helper)
|
|
test_cProfile.py:40(factorial) -> 20/3 0.130 0.147 test_cProfile.py:40(factorial)
|
|
20 0.020 0.020 test_cProfile.py:53(mul)
|
|
test_cProfile.py:53(mul) ->
|
|
test_cProfile.py:60(helper) -> 4 0.116 0.120 test_cProfile.py:78(helper1)
|
|
2 0.000 0.140 test_cProfile.py:89(helper2_indirect)
|
|
6 0.234 0.300 test_cProfile.py:93(helper2)
|
|
test_cProfile.py:78(helper1) -> 4 0.000 0.004 {hasattr}
|
|
4 0.000 0.000 {method 'append' of 'list' objects}
|
|
4 0.000 0.000 {sys.exc_info}
|
|
test_cProfile.py:89(helper2_indirect) -> 2 0.006 0.040 test_cProfile.py:40(factorial)
|
|
2 0.078 0.100 test_cProfile.py:93(helper2)
|
|
test_cProfile.py:93(helper2) -> 8 0.064 0.080 test_cProfile.py:103(subhelper)
|
|
8 0.000 0.008 {hasattr}
|
|
{exec} -> 1 0.000 1.000 <string>:1(<module>)
|
|
2 0.000 0.000 io.py:1212(flush)
|
|
{hasattr} -> 12 0.012 0.012 test_cProfile.py:115(__getattr__)
|
|
{method 'append' of 'list' objects} ->
|
|
{method 'disable' of '_lsprof.Profiler' objects} ->
|
|
{sys.exc_info} ->
|
|
|
|
|
|
Ordered by: standard name
|
|
|
|
Function was called by...
|
|
ncalls tottime cumtime
|
|
<string>:1(<module>) <- 1 0.000 1.000 {exec}
|
|
io.py:1212(flush) <- 2 0.000 0.000 {exec}
|
|
io.py:269(flush) <- 1 0.000 0.000 io.py:1212(flush)
|
|
io.py:656(closed) <- 1 0.000 0.000 io.py:874(flush)
|
|
io.py:874(flush) <- 1 0.000 0.000 io.py:1212(flush)
|
|
test_cProfile.py:103(subhelper) <- 8 0.064 0.080 test_cProfile.py:93(helper2)
|
|
test_cProfile.py:115(__getattr__) <- 16 0.016 0.016 test_cProfile.py:103(subhelper)
|
|
12 0.012 0.012 {hasattr}
|
|
test_cProfile.py:30(testfunc) <- 1 0.270 1.000 <string>:1(<module>)
|
|
test_cProfile.py:40(factorial) <- 1 0.014 0.130 test_cProfile.py:30(testfunc)
|
|
20/3 0.130 0.147 test_cProfile.py:40(factorial)
|
|
2 0.006 0.040 test_cProfile.py:89(helper2_indirect)
|
|
test_cProfile.py:53(mul) <- 20 0.020 0.020 test_cProfile.py:40(factorial)
|
|
test_cProfile.py:60(helper) <- 2 0.040 0.600 test_cProfile.py:30(testfunc)
|
|
test_cProfile.py:78(helper1) <- 4 0.116 0.120 test_cProfile.py:60(helper)
|
|
test_cProfile.py:89(helper2_indirect) <- 2 0.000 0.140 test_cProfile.py:60(helper)
|
|
test_cProfile.py:93(helper2) <- 6 0.234 0.300 test_cProfile.py:60(helper)
|
|
2 0.078 0.100 test_cProfile.py:89(helper2_indirect)
|
|
{exec} <-
|
|
{hasattr} <- 4 0.000 0.004 test_cProfile.py:78(helper1)
|
|
8 0.000 0.008 test_cProfile.py:93(helper2)
|
|
{method 'append' of 'list' objects} <- 4 0.000 0.000 test_cProfile.py:78(helper1)
|
|
{method 'disable' of '_lsprof.Profiler' objects} <-
|
|
{sys.exc_info} <- 4 0.000 0.000 test_cProfile.py:78(helper1)
|
|
|
|
|