summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-09-26 20:52:06 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-09-26 20:52:06 (GMT)
commit0eee7c6ea32b7e6925eaa573586114e77ae9a408 (patch)
tree890611fdd23f474bd47bc9ee954c19e549de4c2c
parentf1c08f04bf93fa2108152b6f63ee85bcd4d26210 (diff)
downloadcpython-0eee7c6ea32b7e6925eaa573586114e77ae9a408.zip
cpython-0eee7c6ea32b7e6925eaa573586114e77ae9a408.tar.gz
cpython-0eee7c6ea32b7e6925eaa573586114e77ae9a408.tar.bz2
add an 'other options' section
-rw-r--r--Doc/howto/cporting.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/howto/cporting.rst b/Doc/howto/cporting.rst
index 0818ea9..a079213 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
+<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.
+