cpyext
cpyext is a CPython C API compatibility layer used by the PyPy project to run CPython-style C extensions. It exposes a substantial portion of the CPython C API on top of PyPy’s runtime, allowing extension modules compiled against the CPython headers to be loaded and used within PyPy with minimal modification.
Implementation and operation: The cpyext component provides emulations of CPython’s C API, including types, functions, and
Scope and limitations: cpyext implements a large, practical subset of the CPython C API, enough for many
Relation and use: cpyext is a component of the PyPy project focused on CPython interoperability. It serves