X Tutup
The Wayback Machine - https://web.archive.org/web/20220407033145/https://github.com/python/cpython/tree/main/Include
Skip to content
main
Switch branches/tags
cpython/Include/
cpython/Include/

Latest commit

Remove the Include/code.h header file. C extensions should only
include the main <Python.h> header file.

Python.h includes directly Include/cpython/code.h instead.
85addfb

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time

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

X Tutup