-
-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathmisc_py313.txt
More file actions
16 lines (16 loc) · 1.32 KB
/
misc_py313.txt
File metadata and controls
16 lines (16 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<module misc_py313
<class misc_py313.MyDict
<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…>
>
<@deprecated('Do not use this anymore') function def deprecated_func(): ...>
>