From 0eee7c6ea32b7e6925eaa573586114e77ae9a408 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 26 Sep 2008 20:52:06 +0000 Subject: [PATCH] add an 'other options' section --- Doc/howto/cporting.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Doc/howto/cporting.rst b/Doc/howto/cporting.rst index 0818ea9e80f..a079213d365 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. +