summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2018-10-20 00:46:00 (GMT)
committerGitHub <noreply@github.com>2018-10-20 00:46:00 (GMT)
commitd5b4f1b5a064c0d858352100fcddb91c363afa51 (patch)
treecae99173cc824e62289c7ebd8e5be290a206d0c1 /Misc
parent6395844e6adebc12c4eba1fb75c5e7c9c8b89f85 (diff)
downloadcpython-d5b4f1b5a064c0d858352100fcddb91c363afa51.zip
cpython-d5b4f1b5a064c0d858352100fcddb91c363afa51.tar.gz
cpython-d5b4f1b5a064c0d858352100fcddb91c363afa51.tar.bz2
bpo-34983: Expose symtable.Symbol.is_nonlocal() in the symtable module (GH-9872)
The symbol table was not exposing functionality to query the nonlocal symbols in a function or to check if a particular symbol is nonlocal.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-10-14-17-26-41.bpo-34983.l8XaZd.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-10-14-17-26-41.bpo-34983.l8XaZd.rst b/Misc/NEWS.d/next/Core and Builtins/2018-10-14-17-26-41.bpo-34983.l8XaZd.rst
new file mode 100644
index 0000000..dd76b63
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-10-14-17-26-41.bpo-34983.l8XaZd.rst
@@ -0,0 +1,2 @@
+Expose :meth:`symtable.Symbol.is_nonlocal` in the symtable module. Patch by
+Pablo Galindo.