mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00

gh-133678: Document C API third party tools (GH-134526)
(cherry picked from commit c3c88064f5
)
Co-authored-by: Victor Stinner <vstinner@python.org>
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Co-authored-by: Steve Dower <steve.dower@python.org>
24 lines
944 B
ReStructuredText
24 lines
944 B
ReStructuredText
.. highlight:: c
|
|
|
|
.. _cporting-howto:
|
|
|
|
*************************************
|
|
Porting Extension Modules to Python 3
|
|
*************************************
|
|
|
|
We recommend the following resources for porting extension modules to Python 3:
|
|
|
|
* The `Migrating C extensions`_ chapter from
|
|
*Supporting Python 3: An in-depth guide*, a book on moving from Python 2
|
|
to Python 3 in general, guides the reader through porting an extension
|
|
module.
|
|
* The `Porting guide`_ from the *py3c* project provides opinionated
|
|
suggestions with supporting code.
|
|
* :ref:`Recommended third party tools <c-api-tools>` offer abstractions over
|
|
the Python's C API.
|
|
Extensions generally need to be re-written to use one of them,
|
|
but the library then handles differences between various Python
|
|
versions and implementations.
|
|
|
|
.. _Migrating C extensions: http://python3porting.com/cextensions.html
|
|
.. _Porting guide: https://py3c.readthedocs.io/en/latest/guide.html
|