..
pycore_abstract.h
…
pycore_asdl.h
gh-87347: Add parenthesis around macro arguments ( #93915 )
2022-06-20 16:04:52 +02:00
pycore_ast.h
…
pycore_ast_state.h
gh-95185: Check recursion depth in the AST constructor ( #95186 )
2022-07-24 15:58:52 +01:00
pycore_atomic.h
Fix typo in internal/pycore_atomic.h (GH-95939)
2022-08-13 11:40:41 +08:00
pycore_atomic_funcs.h
…
pycore_bitutils.h
…
pycore_blocks_output_buffer.h
…
pycore_bytes_methods.h
…
pycore_bytesobject.h
…
pycore_call.h
…
pycore_ceval.h
GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-96510)
2022-10-05 01:34:03 +01:00
pycore_code.h
GH-98831: Add `macro` and `op` and their implementation to DSL ( #99495 )
2022-11-22 16:04:57 -08:00
pycore_compile.h
gh-87092: expose the compiler's codegen to python for unit tests (GH-99111)
2022-11-14 13:56:40 +00:00
pycore_condvar.h
…
pycore_context.h
gh-81057: Move contextvars-related Globals to _PyRuntimeState (gh-99400)
2022-11-16 09:54:28 -07:00
pycore_descrobject.h
gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)
2022-06-17 23:13:17 +08:00
pycore_dict.h
Use _Py_RVALUE() in macros ( #99844 )
2022-11-28 17:42:22 +01:00
pycore_dict_state.h
gh-81057: Move the global Dict-Related Versions to _PyRuntimeState (gh-99497)
2022-11-16 10:37:29 -07:00
pycore_dtoa.h
gh-81057: Move Globals in Core Code to _PyRuntimeState (gh-99496)
2022-11-15 09:45:11 -07:00
pycore_emscripten_signal.h
…
pycore_exceptions.h
…
pycore_fileutils.h
gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)
2022-11-16 09:37:14 -07:00
pycore_floatobject.h
gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)
2022-11-16 09:37:14 -07:00
pycore_format.h
…
pycore_frame.h
GH-96421: Insert shim frame on entry to interpreter (GH-96319)
2022-11-10 12:34:57 +00:00
pycore_function.h
gh-91053: Add an optional callback that is invoked whenever a function is modified ( #98175 )
2022-11-22 13:06:44 +01:00
pycore_gc.h
gh-97922: Run the GC only on eval breaker ( #97920 )
2022-10-08 07:57:09 -07:00
pycore_genobject.h
…
pycore_getopt.h
…
pycore_gil.h
…
pycore_global_objects.h
gh-81057: Move contextvars-related Globals to _PyRuntimeState (gh-99400)
2022-11-16 09:54:28 -07:00
pycore_global_objects_fini_generated.h
gh-64490: Fix bugs in argument clinic varargs processing ( #32092 )
2022-11-24 20:56:50 +01:00
pycore_global_strings.h
gh-64490: Fix bugs in argument clinic varargs processing ( #32092 )
2022-11-24 20:56:50 +01:00
pycore_hamt.h
gh-81057: Move contextvars-related Globals to _PyRuntimeState (gh-99400)
2022-11-16 09:54:28 -07:00
pycore_hashtable.h
Use _Py_RVALUE() in macros ( #99844 )
2022-11-28 17:42:22 +01:00
pycore_import.h
gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)
2022-11-16 09:37:14 -07:00
pycore_initconfig.h
gh-96512: Move int_max_str_digits setting to PyConfig ( #96944 )
2022-10-03 13:55:45 -07:00
pycore_interp.h
gh-91053: Add an optional callback that is invoked whenever a function is modified ( #98175 )
2022-11-22 13:06:44 +01:00
pycore_interpreteridobject.h
…
pycore_list.h
Use _Py_RVALUE() in macros ( #99844 )
2022-11-28 17:42:22 +01:00
pycore_long.h
gh-95778: Correctly pre-check for int-to-str conversion ( #96537 )
2022-09-04 09:21:18 -07:00
pycore_moduleobject.h
…
pycore_namespace.h
…
pycore_object.h
gh-89653: PEP 670: Convert macros to functions ( #99843 )
2022-11-28 16:40:08 +01:00
pycore_obmalloc.h
gh-81057: Move the Allocators to _PyRuntimeState (gh-99217)
2022-11-11 16:30:46 -07:00
pycore_obmalloc_init.h
gh-81057: Move the Allocators to _PyRuntimeState (gh-99217)
2022-11-11 16:30:46 -07:00
pycore_opcode.h
GH-98686: Get rid of BINARY_OP_GENERIC and COMPARE_OP_GENERIC (GH-99399)
2022-11-17 11:36:57 -08:00
pycore_parser.h
…
pycore_pathconfig.h
…
pycore_pyarena.h
…
pycore_pyerrors.h
…
pycore_pyhash.h
gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)
2022-11-16 09:37:14 -07:00
pycore_pylifecycle.h
gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)
2022-11-16 09:37:14 -07:00
pycore_pymath.h
…
pycore_pymem.h
gh-81057: Move Globals in Core Code to _PyRuntimeState (gh-99496)
2022-11-15 09:45:11 -07:00
pycore_pymem_init.h
gh-81057: Move the Allocators to _PyRuntimeState (gh-99217)
2022-11-11 16:30:46 -07:00
pycore_pystate.h
GH-96177: Move GIL and eval breaker code out of ceval.c into ceval_gil.c. (GH-96204)
2022-08-24 14:21:01 +01:00
pycore_range.h
GH-91432: Specialize FOR_ITER (GH-91713)
2022-06-21 11:19:26 +01:00
pycore_runtime.h
gh-81057: Move the global Dict-Related Versions to _PyRuntimeState (gh-99497)
2022-11-16 10:37:29 -07:00
pycore_runtime_init.h
gh-81057: Move the global Dict-Related Versions to _PyRuntimeState (gh-99497)
2022-11-16 10:37:29 -07:00
pycore_runtime_init_generated.h
gh-64490: Fix bugs in argument clinic varargs processing ( #32092 )
2022-11-24 20:56:50 +01:00
pycore_signal.h
…
pycore_sliceobject.h
GH-94163: Add BINARY_SLICE and STORE_SLICE instructions. (GH-94168)
2022-06-27 12:24:23 +01:00
pycore_strhex.h
…
pycore_structseq.h
gh-94673: Add _PyStaticType_InitBuiltin() ( #95152 )
2022-07-25 12:47:31 -06:00
pycore_symtable.h
Make _symtable_entry.ste_type's comment consistent wit _Py_block_ty ( #92414 )
2022-10-07 10:53:07 -07:00
pycore_sysmodule.h
…
pycore_token.h
gh-97669: Create Tools/build/ directory ( #97963 )
2022-10-17 12:01:00 +02:00
pycore_traceback.h
…
pycore_tuple.h
Use _Py_RVALUE() in macros ( #99844 )
2022-11-28 17:42:22 +01:00
pycore_typeobject.h
gh-81057: Move Global Variables Holding Objects to _PyRuntimeState. (gh-99487)
2022-11-14 13:50:56 -07:00
pycore_ucnhash.h
…
pycore_unicodeobject.h
gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)
2022-11-16 09:37:14 -07:00
pycore_unicodeobject_generated.h
gh-64490: Fix bugs in argument clinic varargs processing ( #32092 )
2022-11-24 20:56:50 +01:00
pycore_unionobject.h
gh-87347: Add parenthesis around PyXXX_Check() arguments ( #92815 )
2022-06-16 13:49:43 +02:00
pycore_warnings.h
…