@@ -66,22 +66,23 @@ your system.)
66
66
The above action would run :func: `re.compile ` and print profile results like
67
67
the following::
68
68
69
- 197 function calls (192 primitive calls) in 0.002 seconds
69
+ 214 function calls (207 primitive calls) in 0.002 seconds
70
70
71
- Ordered by: standard name
71
+ Ordered by: cumulative time
72
72
73
73
ncalls tottime percall cumtime percall filename:lineno(function)
74
+ 1 0.000 0.000 0.002 0.002 {built-in method builtins.exec}
74
75
1 0.000 0.000 0.001 0.001 <string>:1(<module>)
75
- 1 0.000 0.000 0.001 0.001 re.py:212 (compile)
76
- 1 0.000 0.000 0.001 0.001 re.py:268 (_compile)
77
- 1 0.000 0.000 0.000 0.000 sre_compile.py:172(_compile_charset )
78
- 1 0.000 0.000 0.000 0.000 sre_compile .py:201(_optimize_charset )
79
- 4 0.000 0.000 0.000 0.000 sre_compile.py:25(_identityfunction )
80
- 3/ 1 0.000 0.000 0.000 0.000 sre_compile .py:33(_compile )
81
-
82
- The first line indicates that 197 calls were monitored. Of those calls, 192
76
+ 1 0.000 0.000 0.001 0.001 re.py:250 (compile)
77
+ 1 0.000 0.000 0.001 0.001 re.py:289 (_compile)
78
+ 1 0.000 0.000 0.000 0.000 sre_compile.py:759(compile )
79
+ 1 0.000 0.000 0.000 0.000 sre_parse .py:937(parse )
80
+ 1 0.000 0.000 0.000 0.000 sre_compile.py:598(_code )
81
+ 1 0.000 0.000 0.000 0.000 sre_parse .py:435(_parse_sub )
82
+
83
+ The first line indicates that 214 calls were monitored. Of those calls, 207
83
84
were :dfn: `primitive `, meaning that the call was not induced via recursion. The
84
- next line: ``Ordered by: standard name ``, indicates that the text string in the
85
+ next line: ``Ordered by: cumulative name ``, indicates that the text string in the
85
86
far right column was used to sort the output. The column headings include:
86
87
87
88
ncalls
0 commit comments