]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
add an 'other options' section
authorBenjamin Peterson <benjamin@python.org>
Fri, 26 Sep 2008 20:52:06 +0000 (20:52 +0000)
committerBenjamin Peterson <benjamin@python.org>
Fri, 26 Sep 2008 20:52:06 +0000 (20:52 +0000)
Doc/howto/cporting.rst

index 0818ea9e80fc435ac33abc0935f2f920690a5d04..a079213d365bcc0ba4ce6ea685ccdaa6914afae5 100644 (file)
@@ -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
+<http://www.cython.org>`_.  It translates a Python-like language to C.  The
+extension modules it creates are compatible with Python 3.x and 2.x.
+