0
0
mirror of https://github.com/python/cpython.git synced 2024-11-27 23:47:29 +01:00
cpython/Include
2022-02-24 14:55:59 +00:00
..
cpython bpo-45459: Rename buffer.h to pybuffer.h (#31201) 2022-02-22 23:11:48 +01:00
internal bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517) 2022-02-23 10:53:24 -08: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 bpo-35134: Add Include/cpython/descrobject.h (GH-30923) 2022-01-26 17:32:47 +01:00
dictobject.h
dynamic_annotations.h
enumobject.h
errcode.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
exports.h
fileobject.h
fileutils.h
floatobject.h Revert "bpo-46131: add fastpath for PyFloat_Check() (GH-30200)" (GH-30208) 2021-12-19 15:05:46 -06:00
frameobject.h
genericaliasobject.h
import.h
intrcheck.h
iterobject.h
listobject.h
longobject.h
marshal.h
memoryobject.h bpo-45459: Add Py_buffer to limited API (GH-29991) 2022-02-02 07:03:10 -08:00
methodobject.h
modsupport.h
moduleobject.h
object.h bpo-45490: Rename static inline functions (GH-31217) 2022-02-11 17:01:10 +01:00
objimpl.h
opcode.h bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH-31484) 2022-02-24 14:55:59 +00:00
osdefs.h
osmodule.h
patchlevel.h Post 3.11.0a5 2022-02-03 22:56:12 +00:00
py_curses.h bpo-46417: Add _PyType_CAST() macro (GH-30760) 2022-01-21 21:39:01 +01:00
pybuffer.h bpo-45459: Rename buffer.h to pybuffer.h (#31201) 2022-02-22 23:11:48 +01:00
pycapsule.h
pydtrace.d
pydtrace.h
pyerrors.h
pyexpat.h
pyframe.h
pyhash.h
pylifecycle.h bpo-43931: Export Python version as API data (GH-25577) 2021-12-09 17:52:05 -08:00
pymacconfig.h
pymacro.h
pymath.h bpo-46640: Py_NAN now uses the C99 NAN constant (GH-31134) 2022-02-06 13:13:04 +01:00
pymem.h
pyport.h bpo-45412: Add _PY_SHORT_FLOAT_REPR macro (GH-31171) 2022-02-23 18:16:23 +01:00
pystate.h
pystrcmp.h
pystrtod.h
Python.h bpo-45459: Rename buffer.h to pybuffer.h (#31201) 2022-02-22 23:11:48 +01:00
pythonrun.h
pythread.h bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507) 2022-01-13 09:46:04 +01:00
rangeobject.h
README.rst
setobject.h
sliceobject.h
structmember.h
structseq.h bpo-46417: _curses uses PyStructSequence_NewType() (GH-30736) 2022-01-21 03:30:20 +01:00
sysmodule.h
token.h
traceback.h
tracemalloc.h
tupleobject.h
typeslots.h bpo-45459: Add Py_buffer to limited API (GH-29991) 2022-02-02 07:03:10 -08:00
unicodeobject.h bpo-46007: Exclude PyUnicode_CHECK_INTERNED() from limited C API (GH-29987) 2021-12-09 00:58:09 -08:00
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/