..
abstract.h
bpo-45459: C API uses type names rather than structure names (GH-31528)
2022-02-24 17:51:59 +01:00
bytearrayobject.h
bpo-35134: Add Include/cpython/bytesobject.h file (GH-18494)
2020-02-12 23:54:31 +01:00
bytesobject.h
bpo-46864: Deprecate PyBytesObject.ob_shash. (GH-31598)
2022-03-06 11:39:10 +09:00
cellobject.h
bpo-45476: Add _Py_RVALUE() macro (GH-29860)
2021-11-30 12:14:45 +01:00
ceval.h
Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052)" (GH-32343)
2022-04-06 13:58:07 +02:00
classobject.h
bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)
2021-10-15 09:46:29 +02:00
code.h
bpo-35134: Remove the Include/code.h header file (GH-32385)
2022-04-07 02:29:52 +02:00
compile.h
bpo-46521: Fix codeop to use a new partial-input mode of the parser (GH-31010)
2022-02-08 11:54:37 +00:00
complexobject.h
bpo-35134: Add Include/cpython/complexobject.h header (GH-32383)
2022-04-07 01:05:27 +02:00
context.h
bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)
2021-10-15 09:46:29 +02:00
descrobject.h
bpo-45459: C API uses type names rather than structure names (GH-31528)
2022-02-24 17:51:59 +01:00
dictobject.h
bpo-45316: Move private PyDict functions to internal C API (GH-31577)
2022-02-25 15:41:55 +01:00
fileobject.h
bpo-41986: Add Py_FileSystemDefaultEncodeErrors and Py_UTF8Mode back to limited API (GH-22621)
2020-10-10 17:09:45 +03: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
bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)
2022-03-12 00:10:02 +01:00
frameobject.h
gh-91502: Add a new API to check if a frame is an entry frame (GH-91503)
2022-04-13 14:06:56 +01:00
funcobject.h
bpo-45316: Move private functions to internal C API (GH-31579)
2022-02-25 16:07:14 +01:00
genobject.h
bpo-47045: Remove `f_state` field (GH-31963)
2022-03-22 12:57:19 +00:00
import.h
bpo-46748: Don't import <stdbool.h> in public headers (GH-31553)
2022-02-25 09:25:54 +01:00
initconfig.h
bpo-45582: Port getpath[p].c to Python (GH-29041)
2021-12-03 00:08:42 +00:00
listobject.h
gh-89653: PEP 670: Convert tuple macros to functions ( #91786 )
2022-04-21 16:52:54 +02:00
longintrepr.h
bpo-46218: Change long_pow() to sliding window algorithm (GH-30319)
2022-01-02 13:18:20 -06:00
longobject.h
bpo-35134: Add Include/cpython/longobject.h (GH-29044)
2021-10-19 02:04:52 +02:00
methodobject.h
bpo-47164: Add _PyCFunctionObject_CAST() macr (GH-32190)
2022-03-31 10:03:13 +02:00
object.h
bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)
2022-03-01 16:00:34 +00:00
objimpl.h
bpo-40170: Remove _Py_GetAllocatedBlocks() function (GH-30940)
2022-01-27 03:35:51 +01:00
odictobject.h
bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561)
2021-02-19 15:55:46 +01:00
picklebufobject.h
bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561)
2021-02-19 15:55:46 +01: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
bpo-45434: Convert Py_GETENV() macro to a function (GH-28912)
2021-10-13 03:39:50 +02:00
pyerrors.h
gh-89770: Implement PEP-678 - Exception notes (GH-31317)
2022-04-16 19:59:52 +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
pylifecycle.h
bpo-43795: Remove Py_FrozenMain from the Limited API & Stable ABI (GH-26241)
2021-05-25 04:42:03 -07:00
pymem.h
bpo-43795: PEP-652: Clean up the stable ABI/limited API (GH-25482)
2021-04-23 14:17:58 +02:00
pystate.h
Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052)" (GH-32343)
2022-04-06 13:58:07 +02:00
pythonrun.h
bpo-43868: Remove PyOS_ReadlineFunctionPointer from the stable ABI list (GH-25442)
2021-04-23 14:23:38 +02:00
pytime.h
Fix typos in the Include directory (GH-28745)
2021-10-06 11:32:38 -07:00
setobject.h
bpo-35134: Add Include/cpython/setobject.h header (GH-32384)
2022-04-07 01:26:24 +02:00
sysmodule.h
bpo-46987: Remove _PySys_GetObjectId / _PySys_GetObjectId (GH-31835)
2022-03-14 21:48:00 +09:00
traceback.h
bpo-45459: C API uses type names rather than structure names (GH-31528)
2022-02-24 17:51:59 +01:00
tupleobject.h
gh-89653: PEP 670: Convert tuple macros to functions ( #91786 )
2022-04-21 16:52:54 +02:00
unicodeobject.h
gh-89653: PEP 670: Convert unicodeobject.h macros to functions ( #91705 )
2022-04-21 02:51:17 +02:00
warnings.h
bpo-35134: Split warnings.h and weakrefobject.h (GH-29042)
2021-10-19 01:31:57 +02:00
weakrefobject.h
gh-89653: PEP 670: Convert PyWeakref_GET_OBJECT() to function ( #91785 )
2022-04-21 16:01:47 +02:00