(self, key: _K, val: _V = ...)
| 300 | def clear(self) -> None: pass |
| 301 | def copy(self) -> Dict[_K, _V]: pass |
| 302 | def setdefault(self, key: _K, val: _V = ...) -> _V: pass |
| 303 | |
| 304 | class set(Generic[_T]): |
| 305 | def __init__(self, i: Optional[Iterable[_T]] = None) -> None: pass |
no outgoing calls