Inherit from Any in threading.local and SimpleNamespace

This commit is contained in:
Daniel Shaulov
2016-01-22 12:24:36 +02:00
parent 01d96e4ac4
commit 14ffe7ea17
3 changed files with 4 additions and 6 deletions

View File

@@ -29,6 +29,8 @@ class Timer(Thread):
kwargs: Mapping[str, Any] = ...) -> None: ...
def cancel(self) -> None : ...
class local(Any): ...
class Event:
def is_set(self) -> bool: ...
def set(self) -> None: ...

View File

@@ -67,7 +67,7 @@ class MappingProxyType:
def __getitem__(self, key: str) -> Any: ...
def __iter__(self) -> Iterator[str]: ...
def __len__(self) -> int: ...
class SimpleNamespace: ...
class SimpleNamespace(Any): ...
class GeneratorType:
gi_code = ... # type: CodeType