summaryrefslogtreecommitdiffstats
path: root/Lib/re/_compiler.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-04-26 18:07:25 (GMT)
committerGitHub <noreply@github.com>2022-04-26 18:07:25 (GMT)
commitf703c96cf08a0d65e718e7acfb043cbc49812a22 (patch)
treecae575ff8bf54cd1ea44867be9d20c6ff4dd035d /Lib/re/_compiler.py
parent1af871eeee4a01cc21a6960d087e9ab8ce4c9f4d (diff)
downloadcpython-f703c96cf08a0d65e718e7acfb043cbc49812a22.zip
cpython-f703c96cf08a0d65e718e7acfb043cbc49812a22.tar.gz
cpython-f703c96cf08a0d65e718e7acfb043cbc49812a22.tar.bz2
gh-91870: Remove unsupported SRE opcode CALL (GH-91872)
It was initially added to support atomic groups, but that support was never fully implemented, and CALL was only left in the compiler, but not interpreter and parser. ATOMIC_GROUP is now used to support atomic groups.
Diffstat (limited to 'Lib/re/_compiler.py')
-rw-r--r--Lib/re/_compiler.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/re/_compiler.py b/Lib/re/_compiler.py
index f621d04..63d8202 100644
--- a/Lib/re/_compiler.py
+++ b/Lib/re/_compiler.py
@@ -164,12 +164,6 @@ def _compile(data, pattern, flags):
_compile(data, av[1], flags)
emit(SUCCESS)
code[skip] = _len(code) - skip
- elif op is CALL:
- emit(op)
- skip = _len(code); emit(0)
- _compile(data, av, flags)
- emit(SUCCESS)
- code[skip] = _len(code) - skip
elif op is AT:
emit(op)
if flags & SRE_FLAG_MULTILINE: