PATH:
opt
/
alt
/
python311
/
include
/
python3.11
/
internal
#ifndef Py_INTERNAL_TYPEOBJECT_H #define Py_INTERNAL_TYPEOBJECT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif /* runtime lifecycle */ extern PyStatus _PyTypes_InitState(PyInterpreterState *); extern PyStatus _PyTypes_InitTypes(PyInterpreterState *); extern void _PyTypes_FiniTypes(PyInterpreterState *); extern void _PyTypes_Fini(PyInterpreterState *); /* other API */ // Type attribute lookup cache: speed up attribute and method lookups, // see _PyType_Lookup(). struct type_cache_entry { unsigned int version; // initialized from type->tp_version_tag PyObject *name; // reference to exactly a str or None PyObject *value; // borrowed reference or NULL }; #define MCACHE_SIZE_EXP 12 #define MCACHE_STATS 0 struct type_cache { struct type_cache_entry hashtable[1 << MCACHE_SIZE_EXP]; #if MCACHE_STATS size_t hits; size_t misses; size_t collisions; #endif }; extern PyStatus _PyTypes_InitSlotDefs(void); extern void _PyStaticType_Dealloc(PyTypeObject *type); #ifdef __cplusplus } #endif #endif /* !Py_INTERNAL_TYPEOBJECT_H */
[+]
..
[-] pycore_blocks_output_buffer.h
[edit]
[-] pycore_dict.h
[edit]
[-] pycore_atomic.h
[edit]
[-] pycore_unionobject.h
[edit]
[-] pycore_hamt.h
[edit]
[-] pycore_typeobject.h
[edit]
[-] pycore_pyhash.h
[edit]
[-] pycore_pyarena.h
[edit]
[-] pycore_pathconfig.h
[edit]
[-] pycore_warnings.h
[edit]
[-] pycore_structseq.h
[edit]
[-] pycore_sliceobject.h
[edit]
[-] pycore_pymem.h
[edit]
[-] pycore_object.h
[edit]
[-] pycore_opcode.h
[edit]
[-] pycore_sysmodule.h
[edit]
[-] pycore_strhex.h
[edit]
[-] pycore_condvar.h
[edit]
[-] pycore_atomic_funcs.h
[edit]
[-] pycore_symtable.h
[edit]
[-] pycore_exceptions.h
[edit]
[-] pycore_signal.h
[edit]
[-] pycore_long.h
[edit]
[-] pycore_traceback.h
[edit]
[-] pycore_runtime_init.h
[edit]
[-] pycore_list.h
[edit]
[-] pycore_asdl.h
[edit]
[-] pycore_accu.h
[edit]
[-] pycore_bitutils.h
[edit]
[-] pycore_context.h
[edit]
[-] pycore_genobject.h
[edit]
[-] pycore_code.h
[edit]
[-] pycore_gil.h
[edit]
[-] pycore_interp.h
[edit]
[-] pycore_global_strings.h
[edit]
[-] pycore_function.h
[edit]
[-] pycore_import.h
[edit]
[-] pycore_namespace.h
[edit]
[-] pycore_bytesobject.h
[edit]
[-] pycore_bytes_methods.h
[edit]
[-] pycore_floatobject.h
[edit]
[-] pycore_moduleobject.h
[edit]
[-] pycore_call.h
[edit]
[-] pycore_abstract.h
[edit]
[-] pycore_getopt.h
[edit]
[-] pycore_ceval.h
[edit]
[-] pycore_unicodeobject.h
[edit]
[-] pycore_gc.h
[edit]
[-] pycore_format.h
[edit]
[-] pycore_ast.h
[edit]
[-] pycore_global_objects.h
[edit]
[-] pycore_pymath.h
[edit]
[-] pycore_dtoa.h
[edit]
[-] pycore_ast_state.h
[edit]
[-] pycore_tuple.h
[edit]
[-] pycore_initconfig.h
[edit]
[-] pycore_emscripten_signal.h
[edit]
[-] pycore_pystate.h
[edit]
[-] pycore_ucnhash.h
[edit]
[-] pycore_runtime.h
[edit]
[-] pycore_pylifecycle.h
[edit]
[-] pycore_compile.h
[edit]
[-] pycore_hashtable.h
[edit]
[-] pycore_frame.h
[edit]
[-] pycore_parser.h
[edit]
[-] pycore_interpreteridobject.h
[edit]
[-] pycore_fileutils.h
[edit]
[-] pycore_pyerrors.h
[edit]