cpython/Include
2021-11-05 21:29:33 +00:00
..
cpython bpo-45637: Store the frame pointer in the cframe (GH-29267) 2021-10-28 13:59:11 +01:00
internal bpo-45292: [PEP 654] Update traceback display code to work with exception groups (GH-29207) 2021-11-05 09:39:18 +00:00
abstract.h
bltinmodule.h
boolobject.h
bytearrayobject.h
bytesobject.h
ceval.h
code.h
codecs.h
compile.h
complexobject.h
datetime.h
descrobject.h
dictobject.h
dynamic_annotations.h
enumobject.h
errcode.h
exports.h
fileobject.h
fileutils.h
floatobject.h
frameobject.h
genericaliasobject.h
import.h
intrcheck.h
iterobject.h
listobject.h
longobject.h
marshal.h bpo-45474: Exclude all of marshal.h if Py_LIMITED_API is defined (GH-29061) 2021-10-20 02:32:14 -07:00
memoryobject.h
methodobject.h
modsupport.h
moduleobject.h
object.h
objimpl.h
opcode.h bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922) 2021-10-27 10:45:35 +01:00
osdefs.h
osmodule.h
patchlevel.h Post 3.11.0a2 2021-11-05 21:29:33 +00:00
py_curses.h
pycapsule.h
pydtrace.d
pydtrace.h
pyerrors.h bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (GH-28569) 2021-10-23 00:13:46 +01:00
pyexpat.h
pyframe.h
pyhash.h
pylifecycle.h
pymacconfig.h
pymacro.h
pymath.h
pymem.h
pyport.h bpo-45434: Only exclude <stdlib.h> in Python 3.11 limited C API (GH-29027) 2021-10-19 12:10:22 +02:00
pystate.h
pystrcmp.h
pystrtod.h
Python.h bpo-45434: Only exclude <stdlib.h> in Python 3.11 limited C API (GH-29027) 2021-10-19 12:10:22 +02:00
pythonrun.h
pythread.h
rangeobject.h
README.rst
setobject.h
sliceobject.h
structmember.h
structseq.h bpo-44220: Export PyStructSequence_UnnamedField in the limited API (GH-26331) 2021-10-21 10:46:48 +02:00
sysmodule.h
token.h
traceback.h
tracemalloc.h
tupleobject.h
typeslots.h
unicodeobject.h
warnings.h
weakrefobject.h

The Python C API
================

The C API is divided into three sections:

1. ``Include/``: Limited API
2. ``Include/cpython/``: CPython implementation details
3. ``Include/internal/``: The internal API

Information on changing the C API is available `in the developer guide`_

.. _in the developer guide: https://devguide.python.org/c-api/