summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_symtable.py
diff options
context:
space:
mode:
authorBatuhan Taşkaya <batuhanosmantaskaya@gmail.com>2020-04-13 23:51:32 (GMT)
committerGitHub <noreply@github.com>2020-04-13 23:51:32 (GMT)
commit990ea4200f05fcd8bce3de363f4d7745ae142385 (patch)
treebfc217385ff3cf46a0a8e925a8b1d7dbbe2a8d20 /Lib/test/test_symtable.py
parenta1a0eb4a394a5ac7a8422616ce1ee4125a3ef74f (diff)
downloadcpython-990ea4200f05fcd8bce3de363f4d7745ae142385.zip
cpython-990ea4200f05fcd8bce3de363f4d7745ae142385.tar.gz
cpython-990ea4200f05fcd8bce3de363f4d7745ae142385.tar.bz2
bpo-40208: Remove deprecated has_exec method of SymbolTable (GH-19396)
Diffstat (limited to 'Lib/test/test_symtable.py')
-rw-r--r--Lib/test/test_symtable.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_symtable.py b/Lib/test/test_symtable.py
index 98d718c..d193558 100644
--- a/Lib/test/test_symtable.py
+++ b/Lib/test/test_symtable.py
@@ -65,7 +65,6 @@ class SymtableTest(unittest.TestCase):
def test_optimized(self):
self.assertFalse(self.top.is_optimized())
- self.assertFalse(self.top.has_exec())
self.assertTrue(self.spam.is_optimized())