misc_py313

1class MyDict(dict):
2    pass
3
4
5class CustomException(RuntimeError):
6    """custom exception type"""
class MyDict(builtins.dict):
2class MyDict(dict):
3    pass
Inherited Members
builtins.dict
get
setdefault
pop
popitem
keys
items
values
update
fromkeys
clear
copy
class CustomException(builtins.RuntimeError):
6class CustomException(RuntimeError):
7    """custom exception type"""

custom exception type

Inherited Members
builtins.RuntimeError
RuntimeError
builtins.BaseException
with_traceback
add_note
args