add an 'other options' section
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 @@
        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.
+