# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ xxsubtype is an example module showing how to subtype builtin types from C. test_descr.py in the standard test suite requires it in order to complete. If you don't care about the examples, and don't intend to run the Python test suite, you can recompile Python without Modules/xxsubtype.c. """ __doc__ = """xxsubtype is an example module showing how to subtype builtin types from C. test_descr.py in the standard test suite requires it in order to complete. If you don't care about the examples, and don't intend to run the Python test suite, you can recompile Python without Modules/xxsubtype.c.""" __file__ = '/home/shared/src/ide-arm64/build-files/build-temp/runtimes-release/__os__/linux-arm64/runtime-python3.13/lib/python3.13/lib-dynload/xxsubtype.cpython-313-aarch64-linux-gnu.so' __loader__ = None __name__ = 'xxsubtype' __package__ = '' __spec__ = None def bench(): pass class spamdict(dict): def __init__(self, *args, **kwargs): pass def fromkeys(self, iterable, value=None): """ Create a new dictionary with keys from iterable and values set to value. """ pass def getstate(self): """ getstate() -> state """ return None def setstate(self, state): """ setstate(state) """ pass state = None class spamlist(list): def __init__(self, *args, **kwargs): pass def classmeth(self, *args, **kw): """ classmeth(*args, **kw) """ pass def getstate(self): """ getstate() -> state """ return None def setstate(self, state): """ setstate(state) """ pass state = property(None, None, None, """ an int variable for demonstration purposes """ ) def staticmeth(self, *args, **kw): """ staticmeth(*args, **kw) """ pass