diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-04-06 16:05:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 16:05:57 (GMT) |
commit | 799d7d61a91eb0ad3256ef9a45a90029cef93b7c (patch) | |
tree | f682be5556bd71eb9d95f12abf618e1d386f8be5 | |
parent | 38aefc585f60a77d66f4fbe5a37594a488b53474 (diff) | |
download | cpython-799d7d61a91eb0ad3256ef9a45a90029cef93b7c.zip cpython-799d7d61a91eb0ad3256ef9a45a90029cef93b7c.tar.gz cpython-799d7d61a91eb0ad3256ef9a45a90029cef93b7c.tar.bz2 |
bpo-40196: Fix a bug in the symtable when reporting inspecting global variables (GH-19391)
-rw-r--r-- | Lib/symtable.py | 2 | ||||
-rw-r--r-- | Lib/test/test_symtable.py | 6 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-04-06-11-05-13.bpo-40196.Jqowse.rst | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/Lib/symtable.py b/Lib/symtable.py index 5bea7cf..ac0a64f 100644 --- a/Lib/symtable.py +++ b/Lib/symtable.py @@ -197,7 +197,7 @@ class Symbol(object): return bool(self.__scope == GLOBAL_EXPLICIT) def is_local(self): - return bool(self.__flags & DEF_BOUND) + return bool(self.__scope in (LOCAL, CELL)) def is_annotated(self): return bool(self.__flags & DEF_ANNOT) diff --git a/Lib/test/test_symtable.py b/Lib/test/test_symtable.py index bea2ce1..98d718c 100644 --- a/Lib/test/test_symtable.py +++ b/Lib/test/test_symtable.py @@ -99,6 +99,7 @@ class SymtableTest(unittest.TestCase): self.assertTrue(self.spam.lookup("bar").is_declared_global()) self.assertFalse(self.internal.lookup("x").is_global()) self.assertFalse(self.Mine.lookup("instance_var").is_global()) + self.assertTrue(self.spam.lookup("bar").is_global()) def test_nonlocal(self): self.assertFalse(self.spam.lookup("some_var").is_nonlocal()) @@ -108,7 +109,10 @@ class SymtableTest(unittest.TestCase): def test_local(self): self.assertTrue(self.spam.lookup("x").is_local()) - self.assertFalse(self.internal.lookup("x").is_local()) + self.assertFalse(self.spam.lookup("bar").is_local()) + + def test_free(self): + self.assertTrue(self.internal.lookup("x").is_free()) def test_referenced(self): self.assertTrue(self.internal.lookup("x").is_referenced()) diff --git a/Misc/NEWS.d/next/Library/2020-04-06-11-05-13.bpo-40196.Jqowse.rst b/Misc/NEWS.d/next/Library/2020-04-06-11-05-13.bpo-40196.Jqowse.rst new file mode 100644 index 0000000..c5fbd6e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-04-06-11-05-13.bpo-40196.Jqowse.rst @@ -0,0 +1,2 @@ +Fix a bug in the :mod:`symtable` module that was causing incorrectly report +global variables as local. Patch by Pablo Galindo. |