summaryrefslogtreecommitdiffstats
path: root/Doc/library/profile.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-04-02 08:35:13 (GMT)
committerGitHub <noreply@github.com>2022-04-02 08:35:13 (GMT)
commit1be3260a90f16aae334d993aecf7b70426f98013 (patch)
tree965c64fd457364b1e303953bced685e76c334d5f /Doc/library/profile.rst
parent4ed8a9a589d2eee7442e0c9417515a707e504faa (diff)
downloadcpython-1be3260a90f16aae334d993aecf7b70426f98013.zip
cpython-1be3260a90f16aae334d993aecf7b70426f98013.tar.gz
cpython-1be3260a90f16aae334d993aecf7b70426f98013.tar.bz2
bpo-47152: Convert the re module into a package (GH-32177)
The sre_* modules are now deprecated.
Diffstat (limited to 'Doc/library/profile.rst')
-rw-r--r--Doc/library/profile.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst
index 5278d1a..2d95096 100644
--- a/Doc/library/profile.rst
+++ b/Doc/library/profile.rst
@@ -73,12 +73,12 @@ the following::
ncalls tottime percall cumtime percall filename:lineno(function)
1 0.000 0.000 0.002 0.002 {built-in method builtins.exec}
1 0.000 0.000 0.001 0.001 <string>:1(<module>)
- 1 0.000 0.000 0.001 0.001 re.py:250(compile)
- 1 0.000 0.000 0.001 0.001 re.py:289(_compile)
- 1 0.000 0.000 0.000 0.000 sre_compile.py:759(compile)
- 1 0.000 0.000 0.000 0.000 sre_parse.py:937(parse)
- 1 0.000 0.000 0.000 0.000 sre_compile.py:598(_code)
- 1 0.000 0.000 0.000 0.000 sre_parse.py:435(_parse_sub)
+ 1 0.000 0.000 0.001 0.001 __init__.py:250(compile)
+ 1 0.000 0.000 0.001 0.001 __init__.py:289(_compile)
+ 1 0.000 0.000 0.000 0.000 _compiler.py:759(compile)
+ 1 0.000 0.000 0.000 0.000 _parser.py:937(parse)
+ 1 0.000 0.000 0.000 0.000 _compiler.py:598(_code)
+ 1 0.000 0.000 0.000 0.000 _parser.py:435(_parse_sub)
The first line indicates that 214 calls were monitored. Of those calls, 207
were :dfn:`primitive`, meaning that the call was not induced via recursion. The