Fixed a wiki markup tag I missed in the numpy tutorial. Added link to pyximport docs...
authorggellner@encolpuis <none@none>
Tue, 30 Sep 2008 01:30:47 +0000 (21:30 -0400)
committerggellner@encolpuis <none@none>
Tue, 30 Sep 2008 01:30:47 +0000 (21:30 -0400)
_static/favicon.ico [new file with mode: 0644]
docs/numpy_tutorial.rst

diff --git a/_static/favicon.ico b/_static/favicon.ico
new file mode 100644 (file)
index 0000000..db92af5
Binary files /dev/null and b/_static/favicon.ico differ
index 1721b8966d76ac0134b23ef379e0b1125ade2d2a..61afd2b2e93201391c15a504221632cbad253912 100644 (file)
@@ -74,7 +74,7 @@ However there are several options to automate these steps:
    <http://www.sagemath.org/doc/prog/node40.html>`_.  
 2. A version of `pyximport <http://www.prescod.net/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 <http://cython.org/#download>`_ (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).