From: Benjamin Peterson Date: Fri, 26 Sep 2008 20:52:06 +0000 (+0000) Subject: add an 'other options' section X-Git-Tag: v2.6~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0eee7c6ea32b7e6925eaa573586114e77ae9a408;p=thirdparty%2FPython%2Fcpython.git add an 'other options' section --- diff --git a/Doc/howto/cporting.rst b/Doc/howto/cporting.rst index 0818ea9e80fc..a079213d365b 100644 --- a/Doc/howto/cporting.rst +++ b/Doc/howto/cporting.rst @@ -206,3 +206,12 @@ both 2.x and 3.0 is tricky. The following simple example demonstrates how. :: return module; #endif } + + +Other options +============= + +If you are writing a new extension module, you might consider `Cython +`_. It translates a Python-like language to C. The +extension modules it creates are compatible with Python 3.x and 2.x. +