summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandt@python.org>2021-05-02 20:02:10 (GMT)
committerGitHub <noreply@github.com>2021-05-02 20:02:10 (GMT)
commit0ad1e0384c8afc5259a6d03363491d89500a5d03 (patch)
tree66debec62434d9503dd8c3b60c22dc99dcd15f95 /Misc
parent7d2b83e9f092a2ea1f715fe028f7c48324bee756 (diff)
downloadcpython-0ad1e0384c8afc5259a6d03363491d89500a5d03.zip
cpython-0ad1e0384c8afc5259a6d03363491d89500a5d03.tar.gz
cpython-0ad1e0384c8afc5259a6d03363491d89500a5d03.tar.bz2
bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-04-24-16-40-23.bpo-43754.9SzHWG.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-04-24-16-40-23.bpo-43754.9SzHWG.rst b/Misc/NEWS.d/next/Core and Builtins/2021-04-24-16-40-23.bpo-43754.9SzHWG.rst
new file mode 100644
index 0000000..54556fa
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-04-24-16-40-23.bpo-43754.9SzHWG.rst
@@ -0,0 +1,2 @@
+When performing structural pattern matching (:pep:`634`), captured names are
+now left unbound until the *entire* pattern has matched successfully.