..
abstract.h
gh-112026: Restore removed private C API ( #112115 )
2023-11-15 16:38:31 +00:00
bytearrayobject.h
gh-89653: PEP 670: Macros always cast arguments in cpython/ ( #93766 )
2022-06-13 20:09:40 +02:00
bytesobject.h
gh-106320: Remove _PyBytes_Join() C API ( #107144 )
2023-07-23 20:10:12 +00:00
cellobject.h
gh-87347: Add parenthesis around PyXXX_Check() arguments ( #92815 )
2022-06-16 13:49:43 +02:00
ceval.h
gh-106320: Remove private _PyEval function ( #108433 )
2023-08-24 20:25:22 +02:00
classobject.h
gh-89653: PEP 670: Convert macros to functions ( #99843 )
2022-11-28 16:40:08 +01:00
code.h
gh-116968: Reimplement Tier 2 counters ( #117144 )
2024-04-04 15:03:27 +00:00
compile.h
gh-117411: move PyFutureFeatures to pycore_symtable.h and make it private ( #117412 )
2024-04-02 10:34:49 +00:00
complexobject.h
gh-112026: Restore removed private C API ( #112115 )
2023-11-15 16:38:31 +00:00
context.h
gh-106320: Remove private _PyContext_NewHamtForTests() ( #108434 )
2023-08-24 19:37:41 +02:00
descrobject.h
gh-106320: Move _PyMethodWrapper_Type to internal C API ( #107064 )
2023-07-22 20:57:59 +00:00
dictobject.h
gh-112066: Add PyDict_SetDefaultRef function. ( #112123 )
2024-02-06 11:36:23 -05:00
fileobject.h
gh-106320: Remove private _Py_UniversalNewlineFgetsWithSize() ( #108602 )
2023-08-29 02:36:50 +00:00
fileutils.h
bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)
2022-01-11 11:56:16 +01:00
floatobject.h
gh-89653: PEP 670: Convert macros to functions ( #99843 )
2022-11-28 16:40:08 +01:00
frameobject.h
GH-96803: Move PyUnstable_InterpreterFrame_GetCode() to Python.h ( #107188 )
2023-07-24 21:20:44 +02:00
funcobject.h
gh-106320: Remove _PyFunction_Vectorcall() API ( #107071 )
2023-07-22 21:44:33 +00:00
genobject.h
gh-106320: Move private _PyGen API to the internal C API ( #107032 )
2023-07-22 14:21:16 +00:00
import.h
GH-108716: Turn off deep-freezing of code objects. (GH-108722)
2023-09-08 10:34:40 +01:00
initconfig.h
gh-116167: Allow disabling the GIL with PYTHON_GIL=0 or -X gil=0 ( #116338 )
2024-03-11 11:02:58 -04:00
listobject.h
gh-112087: Make list_repr and list_length to be thread-safe (gh-114582)
2024-01-27 01:20:21 +09:00
longintrepr.h
gh-116869: Make C API compatible with ISO C90 ( #116950 )
2024-03-18 20:16:58 +01:00
longobject.h
gh-111140: PyLong_From/AsNativeBytes: Take *flags* rather than just *endianness* (GH-116053)
2024-04-05 16:21:16 +02:00
memoryobject.h
gh-106320: Remove private _PyManagedBuffer_Type ( #108431 )
2023-08-24 19:07:54 +02:00
methodobject.h
gh-87347: Add parenthesis around PyXXX_Check() arguments ( #92815 )
2022-06-16 13:49:43 +02:00
object.h
gh-116936: Add PyType_GetModuleByDef() to the limited C API ( #116937 )
2024-03-25 16:32:20 +00:00
objimpl.h
gh-102013: Move PyUnstable_GC_VisitObjects() to Include/cpython/objimpl.h ( #115560 )
2024-02-16 15:49:13 +01:00
odictobject.h
gh-87347: Add parenthesis around macro arguments ( #93915 )
2022-06-20 16:04:52 +02:00
optimizer.h
gh-116968: Reimplement Tier 2 counters ( #117144 )
2024-04-04 15:03:27 +00:00
picklebufobject.h
gh-87347: Add parenthesis around PyXXX_Check() arguments ( #92815 )
2022-06-16 13:49:43 +02:00
pthread_stubs.h
GH-110829: Ensure Thread.join() joins the OS thread ( #110848 )
2023-11-04 13:59:24 +00:00
pyatomic.h
gh-112075: Make PyDictKeysObject thread-safe ( #114741 )
2024-02-20 16:40:37 -08:00
pyatomic_gcc.h
gh-112075: Make PyDictKeysObject thread-safe ( #114741 )
2024-02-20 16:40:37 -08:00
pyatomic_msc.h
gh-112075: Make PyDictKeysObject thread-safe ( #114741 )
2024-02-20 16:40:37 -08:00
pyatomic_std.h
gh-116941: Fix pyatomic_std.h syntax errors ( #116967 )
2024-03-18 17:05:43 -04:00
pyctype.h
bpo-43816: Add extern "C" to Include/cpython/pyctype.h (GH-25365)
2021-04-13 13:27:21 +02:00
pydebug.h
gh-77782: Deprecate global configuration variable ( #93943 )
2022-06-17 16:12:00 +02:00
pyerrors.h
gh-116809: Restore removed _PyErr_ChainExceptions1() function ( #116900 )
2024-03-16 21:37:11 +01:00
pyfpe.h
bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561)
2021-02-19 15:55:46 +01:00
pyframe.h
gh-107149: Make PyUnstable_ExecutableKinds public ( #108440 )
2023-08-31 09:56:06 +02:00
pyhash.h
gh-113024: C API: Add PyObject_GenericHash() function (GH-113025)
2024-03-22 20:19:10 +02:00
pylifecycle.h
gh-110397: Add Py_IsFinalizing() to the stable ABI ( #110441 )
2023-10-07 17:59:16 +02:00
pymem.h
gh-90815: Add mimalloc memory allocator ( #109914 )
2023-10-30 15:43:11 +00:00
pystate.h
gh-117008: Fix functools test_recursive_pickle() ( #117009 )
2024-03-23 13:01:20 +01:00
pystats.h
GH-115776: Embed the values array into the object, for "normal" Python objects. (GH-116115)
2024-04-02 11:59:21 +01:00
pythonrun.h
gh-106320: Remove private pythonrun API ( #108599 )
2023-08-29 04:18:52 +02:00
pythread.h
gh-110014: Remove PY_TIMEOUT_MAX from limited C API ( #110217 )
2023-10-02 18:07:56 +02:00
pytime.h
gh-110850: Add PyTime_t C API (GH-115215)
2024-02-12 18:13:10 +01:00
setobject.h
gh-106320: Move private _PySet API to the internal API ( #107041 )
2023-07-22 17:04:34 +02:00
sysmodule.h
gh-106560: Fix redundant declarations in Include/ ( #112611 )
2023-12-03 12:16:31 +01:00
traceback.h
gh-106320: Remove private _PyTraceback functions ( #108453 )
2023-08-24 23:35:47 +00:00
tracemalloc.h
gh-106320: Remove private _PyTraceMalloc C API functions ( #106324 )
2023-07-02 00:49:18 +00:00
tupleobject.h
gh-106320: Remove _PyTuple_MaybeUntrack() C API ( #107143 )
2023-07-23 19:16:21 +00:00
unicodeobject.h
gh-112026: Restore removed private C API ( #112115 )
2023-11-15 16:38:31 +00:00
warnings.h
gh-87347: Add parenthesis around macro arguments ( #93915 )
2022-06-20 16:04:52 +02:00
weakrefobject.h
gh-111926: Make weakrefs thread-safe in free-threaded builds ( #117168 )
2024-04-08 10:58:38 -04:00