Staging
v0.8.1
https://github.com/python/cpython
Revision 8b6c4a921af6d5d0a9640211ac93d7886a55a8f3 authored by Victor Stinner on 03 December 2020, 13:01:10 UTC, committed by GitHub on 03 December 2020, 13:01:10 UTC
Write also unit tests on Py_NewRef() and Py_XNewRef().
1 parent 7e5e13d
Raw File
Tip revision: 8b6c4a921af6d5d0a9640211ac93d7886a55a8f3 authored by Victor Stinner on 03 December 2020, 13:01:10 UTC
bpo-42262: Py_NewRef() casts its argument to PyObject* (GH-23626)
Tip revision: 8b6c4a9
cporting.rst
.. 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.
* The `Cython`_ and `CFFI`_ libraries offer abstractions over
  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
.. _Cython: http://cython.org/
.. _CFFI: https://cffi.readthedocs.io/en/latest/
back to top