[issue34983] expose symtable.Symbol.is_nonlocal()

2018-10-19 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-l

[issue34983] expose symtable.Symbol.is_nonlocal()

2018-10-19 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset d5b4f1b5a064c0d858352100fcddb91c363afa51 by Pablo Galindo in branch 'master': bpo-34983: Expose symtable.Symbol.is_nonlocal() in the symtable module (GH-9872) https://github.com/python/cpython/commit/d5b4f1b5a064c0d858352100fcddb91c363afa

[issue34983] expose symtable.Symbol.is_nonlocal()

2018-10-14 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : The symtable has information about if a particular symbol is nonlocal though the DEF_LOCAL flag but this information is not exposed in symtable.py, making impossible to ask if a symbol is declared as nonlocal using the python symtable module. -

[issue34983] expose symtable.Symbol.is_nonlocal()

2018-10-14 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9237 stage: -> patch review ___ Python tracker ___ ___ Python