diff options
author | Guido van Rossum <guido@python.org> | 2007-12-10 20:04:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-12-10 20:04:04 (GMT) |
commit | a13f4a11294934fca3311809b1c8ec91dc1e6d52 (patch) | |
tree | 0227caba385989042d4cf99c9824c1613726d6f2 /Lib/test/output/test_cProfile | |
parent | 968e68dc7119734a52d620833059b63cddbae8ad (diff) | |
download | cpython-a13f4a11294934fca3311809b1c8ec91dc1e6d52.zip cpython-a13f4a11294934fca3311809b1c8ec91dc1e6d52.tar.gz cpython-a13f4a11294934fca3311809b1c8ec91dc1e6d52.tar.bz2 |
Make Decimal a subclass of Real and Inexact.
Diffstat (limited to 'Lib/test/output/test_cProfile')
-rw-r--r-- | Lib/test/output/test_cProfile | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/Lib/test/output/test_cProfile b/Lib/test/output/test_cProfile index 0037924..7ac1433 100644 --- a/Lib/test/output/test_cProfile +++ b/Lib/test/output/test_cProfile @@ -5,10 +5,10 @@ test_cProfile 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:1201(flush) - 1 0.000 0.000 0.000 0.000 io.py:259(flush) - 1 0.000 0.000 0.000 0.000 io.py:646(closed) - 1 0.000 0.000 0.000 0.000 io.py:864(flush) + 2 0.000 0.000 0.000 0.000 io.py:1211(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) @@ -30,11 +30,11 @@ test_cProfile Function called... ncalls tottime cumtime <string>:1(<module>) -> 1 0.270 1.000 test_cProfile.py:30(testfunc) -io.py:1201(flush) -> 1 0.000 0.000 io.py:259(flush) - 1 0.000 0.000 io.py:864(flush) -io.py:259(flush) -> -io.py:646(closed) -> -io.py:864(flush) -> 1 0.000 0.000 io.py:646(closed) +io.py:1211(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) @@ -53,7 +53,7 @@ test_cProfile.py:89(helper2_indirect) -> 2 0.006 0.040 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:1201(flush) + 2 0.000 0.000 io.py:1211(flush) {hasattr} -> 12 0.012 0.012 test_cProfile.py:115(__getattr__) {method 'append' of 'list' objects} -> {method 'disable' of '_lsprof.Profiler' objects} -> @@ -65,10 +65,10 @@ test_cProfile.py:93(helper2) -> 8 0.064 0.080 Function was called by... ncalls tottime cumtime <string>:1(<module>) <- 1 0.000 1.000 {exec} -io.py:1201(flush) <- 2 0.000 0.000 {exec} -io.py:259(flush) <- 1 0.000 0.000 io.py:1201(flush) -io.py:646(closed) <- 1 0.000 0.000 io.py:864(flush) -io.py:864(flush) <- 1 0.000 0.000 io.py:1201(flush) +io.py:1211(flush) <- 2 0.000 0.000 {exec} +io.py:269(flush) <- 1 0.000 0.000 io.py:1211(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:1211(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} |