summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-08-26 14:52:25 (GMT)
committerGitHub <noreply@github.com>2019-08-26 14:52:25 (GMT)
commit0e4ea16336685cf3fa353d8c54af59b45b2d5c33 (patch)
treea0bb8ddacd204b322a85c7eba38a65d30715f675 /Misc
parent1c0600998681295735a18690fae184b0c9a4ca51 (diff)
downloadcpython-0e4ea16336685cf3fa353d8c54af59b45b2d5c33.zip
cpython-0e4ea16336685cf3fa353d8c54af59b45b2d5c33.tar.gz
cpython-0e4ea16336685cf3fa353d8c54af59b45b2d5c33.tar.bz2
bpo-37947: Adjust correctly the recursion level in symtable for named expressions (GH-15499)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-08-26-04-09-57.bpo-37947.mzAQtB.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-08-26-04-09-57.bpo-37947.mzAQtB.rst b/Misc/NEWS.d/next/Core and Builtins/2019-08-26-04-09-57.bpo-37947.mzAQtB.rst
new file mode 100644
index 0000000..2b3b723
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-08-26-04-09-57.bpo-37947.mzAQtB.rst
@@ -0,0 +1,2 @@
+Adjust correctly the recursion level in the symtable generation for named
+expressions. Patch by Pablo Galindo.