mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-20 16:48:27 +08:00
Improve Python 2 stub for abc; _weakrefset stub.
This commit is contained in:
5
builtins/2.7/_weakrefset.pyi
Normal file
5
builtins/2.7/_weakrefset.pyi
Normal file
@@ -0,0 +1,5 @@
|
||||
from typing import Iterator, Any
|
||||
|
||||
class WeakSet:
|
||||
def __iter__(self) -> Iterator[Any]: ...
|
||||
def add(self, *args, **kwargs) -> Any: ...
|
||||
Reference in New Issue
Block a user