# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT CELL = 5 DEF_ANNOT = 256 DEF_BOUND = 134 DEF_FREE = 32 DEF_FREE_CLASS = 64 DEF_GLOBAL = 1 DEF_IMPORT = 128 DEF_LOCAL = 2 DEF_NONLOCAL = 8 DEF_PARAM = 4 FREE = 4 GLOBAL_EXPLICIT = 2 GLOBAL_IMPLICIT = 3 LOCAL = 1 SCOPE_MASK = 15 SCOPE_OFF = 12 TYPE_ANNOTATION = 3 TYPE_CLASS = 1 TYPE_FUNCTION = 0 TYPE_MODULE = 2 TYPE_TYPE_ALIAS = 4 TYPE_TYPE_PARAMETERS = 5 TYPE_TYPE_VARIABLE = 6 USE = 16 __doc__ = None class __loader__(object): """ Meta path import for built-in modules. All methods are either class or static methods to avoid the need to instantiate the class. """ _ORIGIN = 'built-in' def create_module(self, spec): """ Create a built-in module """ pass def exec_module(self, module): """ Exec a built-in module """ pass def find_spec(self, fullname, path=None, target=None): pass def get_code(self, fullname): """ Return None as built-in modules do not have code objects. """ pass def get_source(self, fullname): """ Return None as built-in modules do not have source code. """ pass def is_package(self, fullname): """ Return False as built-in modules are never packages. """ pass def load_module(self, fullname): """ Load the specified module into sys.modules and return it. This method is deprecated. Use loader.exec_module() instead. """ pass __name__ = '_symtable' __package__ = '' __spec__ = None def symtable(source, filename, startstr): """ Return symbol and scope dictionaries used internally by compiler. """ pass