diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-04-02 08:35:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-02 08:35:13 (GMT) |
commit | 1be3260a90f16aae334d993aecf7b70426f98013 (patch) | |
tree | 965c64fd457364b1e303953bced685e76c334d5f /Doc/library/profile.rst | |
parent | 4ed8a9a589d2eee7442e0c9417515a707e504faa (diff) | |
download | cpython-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.rst | 12 |
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 |