add an 'other options' section

This commit is contained in:
Benjamin Peterson 2008-09-26 20:52:06 +00:00
parent f1c08f04bf
commit 0eee7c6ea3
1 changed files with 9 additions and 0 deletions

View 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.