-
-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathtyped_dict.txt
More file actions
49 lines (49 loc) · 4.16 KB
/
typed_dict.txt
File metadata and controls
49 lines (49 loc) · 4.16 KB
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
<module typed_dict
<class typed_dict.Foo
<var a: int | None # First attribute.>
<method def get(self, key, default=None, /): ... # inherited from builtins.dict.get, Return the value for…>
<method def setdefault(self, key, default=None, /): ... # inherited from builtins.dict.setdefault, Insert key with a va…>
<method def pop(unknown): ... # inherited from builtins.dict.pop, D.pop(k[,d]) -> v, r…>
<method def popitem(self, /): ... # inherited from builtins.dict.popitem, Remove and return a …>
<method def keys(self, /): ... # inherited from builtins.dict.keys, Return a set-like ob…>
<method def items(self, /): ... # inherited from builtins.dict.items, Return a set-like ob…>
<method def values(self, /): ... # inherited from builtins.dict.values, Return an object pro…>
<method def update(unknown): ... # inherited from builtins.dict.update, D.update([E, ]**F) -…>
<method def fromkeys(type, iterable, value=None, /): ... # inherited from builtins.dict.fromkeys, Create a new diction…>
<method def clear(self, /): ... # inherited from builtins.dict.clear, Remove all items fro…>
<method def copy(self, /): ... # inherited from builtins.dict.copy, Return a shallow cop…>
>
<class typed_dict.Bar # A TypedDict subclass…
<var a: int | None # inherited from typed_dict.Foo.a, First attribute.>
<var b: int # Second attribute.>
<var c: str>
<method def get(self, key, default=None, /): ... # inherited from builtins.dict.get, Return the value for…>
<method def setdefault(self, key, default=None, /): ... # inherited from builtins.dict.setdefault, Insert key with a va…>
<method def pop(unknown): ... # inherited from builtins.dict.pop, D.pop(k[,d]) -> v, r…>
<method def popitem(self, /): ... # inherited from builtins.dict.popitem, Remove and return a …>
<method def keys(self, /): ... # inherited from builtins.dict.keys, Return a set-like ob…>
<method def items(self, /): ... # inherited from builtins.dict.items, Return a set-like ob…>
<method def values(self, /): ... # inherited from builtins.dict.values, Return an object pro…>
<method def update(unknown): ... # inherited from builtins.dict.update, D.update([E, ]**F) -…>
<method def fromkeys(type, iterable, value=None, /): ... # inherited from builtins.dict.fromkeys, Create a new diction…>
<method def clear(self, /): ... # inherited from builtins.dict.clear, Remove all items fro…>
<method def copy(self, /): ... # inherited from builtins.dict.copy, Return a shallow cop…>
>
<class typed_dict.Baz # A TypedDict subsubcl…
<var b: int # inherited from typed_dict.Bar.b, Second attribute.>
<var c: str # inherited from typed_dict.Bar.c>
<var a: int | None # inherited from typed_dict.Foo.a, First attribute.>
<var d: bool # new attribute>
<method def get(self, key, default=None, /): ... # inherited from builtins.dict.get, Return the value for…>
<method def setdefault(self, key, default=None, /): ... # inherited from builtins.dict.setdefault, Insert key with a va…>
<method def pop(unknown): ... # inherited from builtins.dict.pop, D.pop(k[,d]) -> v, r…>
<method def popitem(self, /): ... # inherited from builtins.dict.popitem, Remove and return a …>
<method def keys(self, /): ... # inherited from builtins.dict.keys, Return a set-like ob…>
<method def items(self, /): ... # inherited from builtins.dict.items, Return a set-like ob…>
<method def values(self, /): ... # inherited from builtins.dict.values, Return an object pro…>
<method def update(unknown): ... # inherited from builtins.dict.update, D.update([E, ]**F) -…>
<method def fromkeys(type, iterable, value=None, /): ... # inherited from builtins.dict.fromkeys, Create a new diction…>
<method def clear(self, /): ... # inherited from builtins.dict.clear, Remove all items fro…>
<method def copy(self, /): ... # inherited from builtins.dict.copy, Return a shallow cop…>
>
>