summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2022-04-15 16:26:44 (GMT)
committerGitHub <noreply@github.com>2022-04-15 16:26:44 (GMT)
commit1b34b5687b20a54cff2158c8660201e7377dec21 (patch)
tree44790f7a643402046501c277d704266ca50e847b /Misc
parentd104f4d21f735693ea93fe65ea4b4e1aa1779343 (diff)
downloadcpython-1b34b5687b20a54cff2158c8660201e7377dec21.zip
cpython-1b34b5687b20a54cff2158c8660201e7377dec21.tar.gz
cpython-1b34b5687b20a54cff2158c8660201e7377dec21.tar.bz2
gh-91404: Use computed gotos and reduce indirection in re (#91495)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-04-12-19-08-13.gh-issue-91404.zjqYHo.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-04-12-19-08-13.gh-issue-91404.zjqYHo.rst b/Misc/NEWS.d/next/Library/2022-04-12-19-08-13.gh-issue-91404.zjqYHo.rst
new file mode 100644
index 0000000..58464fc
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-04-12-19-08-13.gh-issue-91404.zjqYHo.rst
@@ -0,0 +1,3 @@
+Improve the performance of :mod:`re` matching by using computed gotos (or
+"threaded code") on supported platforms and removing expensive pointer
+indirections.