From: ggellner@encolpuis Date: Tue, 30 Sep 2008 01:30:47 +0000 (-0400) Subject: Fixed a wiki markup tag I missed in the numpy tutorial. Added link to pyximport docs... X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=54b4f114619121c3114a3153d82f771512d0778c;p=cython.git Fixed a wiki markup tag I missed in the numpy tutorial. Added link to pyximport docs in numpy tutorial. --- diff --git a/_static/favicon.ico b/_static/favicon.ico new file mode 100644 index 00000000..db92af52 Binary files /dev/null and b/_static/favicon.ico differ diff --git a/docs/numpy_tutorial.rst b/docs/numpy_tutorial.rst index 1721b896..61afd2b2 100644 --- a/docs/numpy_tutorial.rst +++ b/docs/numpy_tutorial.rst @@ -74,7 +74,7 @@ However there are several options to automate these steps: `_. 2. A version of `pyximport `_ is shipped with Cython, so that you can import pyx-files dynamically into Python and - have them compiled automatically. + have them compiled automatically (See :ref:`pyximport`). 3. Cython supports distutils so that you can very easily create build scripts which automate the process, this is the preferred method for full programs. 4. Manual compilation (see below) @@ -90,7 +90,7 @@ Installation Unless you are used to some other automatic method: `download Cython `_ (0.9.8.1.1 or later), unpack it, -and run the usual {{{python setup.py install}}}. This will install a +and run the usual ```python setup.py install``. This will install a ``cython`` executable on your system. It is also possible to use Cython from the source directory without installing (simply launch :file:`cython.py` in the root directory).