Commit 603d043a authored by Wieland Hoffmann's avatar Wieland Hoffmann Committed by Stefan Behnel

Fix the placement of a closing bracket

parent 5278baf4
...@@ -86,8 +86,8 @@ Pyximport ...@@ -86,8 +86,8 @@ Pyximport
Cython is a compiler. Therefore it is natural that people tend to go Cython is a compiler. Therefore it is natural that people tend to go
through an edit/compile/test cycle with Cython modules. But my personal through an edit/compile/test cycle with Cython modules. But my personal
opinion is that one of the deep insights in Python's implementation is opinion is that one of the deep insights in Python's implementation is
that a language can be compiled (Python modules are compiled to ``.pyc``) that a language can be compiled (Python modules are compiled to ``.pyc``
files and hide that compilation process from the end-user so that they files) and hide that compilation process from the end-user so that they
do not have to worry about it. Pyximport does this for Cython modules. do not have to worry about it. Pyximport does this for Cython modules.
For instance if you write a Cython module called :file:`foo.pyx`, with For instance if you write a Cython module called :file:`foo.pyx`, with
Pyximport you can import it in a regular Python module like this:: Pyximport you can import it in a regular Python module like this::
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment