Removed unused import symbols from stdlib stubs and fixed a few other errors detected by pyright. I did a similar pass several months ago; these were introduced since then. (#4803)

Co-authored-by: Eric Traut <erictr@microsoft.com>
This commit is contained in:
Eric Traut
2020-12-06 09:44:18 -08:00
committed by GitHub
parent 3d8a29705e
commit c4d8507ff7
19 changed files with 26 additions and 20 deletions

View File

@@ -116,10 +116,14 @@ def currentframe(depth: int = ...) -> FrameType: ...
def stack(context: int = ...) -> List[_FrameInfo]: ...
def trace(context: int = ...) -> List[_FrameInfo]: ...
# Create private type alias to avoid conflict with symbol of same
# name created in Attribute class.
_Object = object
class Attribute(NamedTuple):
name: str
kind: str
defining_class: type
object: object
object: _Object
def classify_class_attrs(cls: type) -> List[Attribute]: ...