[Python-checkins] r66628 - python/trunk/Doc/howto/cporting.rst

benjamin.peterson python-checkins at python.org
Fri Sep 26 22:52:06 CEST 2008


Author: benjamin.peterson
Date: Fri Sep 26 22:52:06 2008
New Revision: 66628

Log:
add an 'other options' section

Modified:
   python/trunk/Doc/howto/cporting.rst

Modified: python/trunk/Doc/howto/cporting.rst
==============================================================================
--- python/trunk/Doc/howto/cporting.rst	(original)
+++ python/trunk/Doc/howto/cporting.rst	Fri Sep 26 22:52:06 2008
@@ -206,3 +206,12 @@
        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.
+


More information about the Python-checkins mailing list