integrate some generated stubs

This commit is contained in:
Maxim Kurnikov
2018-11-13 20:44:24 +03:00
parent 347c2d270c
commit 6de735a7bb
20 changed files with 669 additions and 17 deletions

View File

@@ -2,7 +2,7 @@
from collections import OrderedDict
from typing import (Any, Callable, Dict, Generic, Hashable, Iterable, Iterator, List, Mapping,
from typing import (Any, Callable, Dict, Generic, Iterable, Iterator, List, Mapping,
MutableMapping, MutableSet, Optional, overload, Tuple, TypeVar, Union)
KT = TypeVar('KT')
@@ -14,6 +14,9 @@ class OrderedSet(MutableSet[KT], Generic[KT]):
def add(self, item: KT) -> None: ...
def remove(self, item: KT) -> None: ...
def discard(self, item: KT) -> None: ...
def __contains__(self, item): ...
def __iter__(self): ...
def __len__(self): ...
class MultiValueDictKeyError(KeyError): ...