bpo-40208: Remove deprecated has_exec method of SymbolTable (GH-19396)

This commit is contained in:
Batuhan Taşkaya 2020-04-14 02:51:32 +03:00 committed by GitHub
parent a1a0eb4a39
commit 990ea4200f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 9 deletions

View file

@ -82,10 +82,6 @@ class SymbolTable(object):
def has_children(self):
return bool(self._table.children)
def has_exec(self):
"""Return true if the scope uses exec. Deprecated method."""
return False
def get_identifiers(self):
return self._table.symbols.keys()