mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-23 19:41:51 +08:00
Akuli and srittau: Remove Python 2 branches from Python 3 stubs (#5461)
* run script and do some manual changes (Akuli) * do the whole thing manually (srittau) * merge changes (Akuli) Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
This commit is contained in:
@@ -13,8 +13,6 @@ class SymbolTable(object):
|
||||
def is_nested(self) -> bool: ...
|
||||
def has_children(self) -> bool: ...
|
||||
def has_exec(self) -> bool: ...
|
||||
if sys.version_info < (3, 0):
|
||||
def has_import_star(self) -> bool: ...
|
||||
def get_identifiers(self) -> Sequence[str]: ...
|
||||
def lookup(self, name: str) -> Symbol: ...
|
||||
def get_symbols(self) -> List[Symbol]: ...
|
||||
@@ -42,8 +40,7 @@ class Symbol(object):
|
||||
def is_global(self) -> bool: ...
|
||||
def is_declared_global(self) -> bool: ...
|
||||
def is_local(self) -> bool: ...
|
||||
if sys.version_info >= (3, 6):
|
||||
def is_annotated(self) -> bool: ...
|
||||
def is_annotated(self) -> bool: ...
|
||||
def is_free(self) -> bool: ...
|
||||
def is_imported(self) -> bool: ...
|
||||
def is_assigned(self) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user