forked from JetBrains/python-skeletons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollections.py
56 lines (44 loc) · 1008 Bytes
/
collections.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"""Skeleton for 'collections' stdlib module."""
import sys
import collections
class Iterable(object):
def __init__(self):
"""
:rtype: collections.Iterable[T]
"""
pass
def __iter__(self):
"""
:rtype: collections.Iterator[T]
"""
class Iterator(collections.Iterable):
def __init__(self):
"""
:rtype: collections.Iterator[T]
"""
pass
if sys.version_info >= (3, 0):
def __next__(self):
"""
:rtype: T
"""
pass
if sys.version_info < (3, 0):
def next(self):
"""
:rtype: T
"""
pass
class defaultdict(dict):
def __init__(self, default_factory=None, **kwargs):
"""
:type default_factory: () -> V
:rtype: defaultdict[Any, V]
"""
pass
def __missing__(self, key):
"""
:type key: Any
:rtype: V
"""
pass