Commit fcf7c0a8 authored by Robert Bradshaw's avatar Robert Bradshaw

Whitespace fixes.

parent 4420cb6e
...@@ -255,7 +255,7 @@ Compiling with ``pyximport`` ...@@ -255,7 +255,7 @@ Compiling with ``pyximport``
For generating Cython code right in your pure python module just type:: For generating Cython code right in your pure python module just type::
>>> import pyximport; pyximport.install() >>> import pyximport; pyximport.install()
>>> import helloworld >>> import helloworld
Hello World Hello World
This allows you to automatically run Cython on every ``.pyx`` that This allows you to automatically run Cython on every ``.pyx`` that
...@@ -281,7 +281,7 @@ For example:: ...@@ -281,7 +281,7 @@ For example::
>>> import cython >>> import cython
>>> def f(a): >>> def f(a):
... ret = cython.inline("return a+b", b=3) ... ret = cython.inline("return a+b", b=3)
... ...
Unbound variables are automatically pulled from the surrounding local Unbound variables are automatically pulled from the surrounding local
and global scopes, and the result of the compilation is cached for and global scopes, and the result of the compilation is cached for
...@@ -311,7 +311,7 @@ Cython code. Here is the list of currently supported directives: ...@@ -311,7 +311,7 @@ Cython code. Here is the list of currently supported directives:
If set to False, Cython is free to assume that indexing operations If set to False, Cython is free to assume that indexing operations
([]-operator) in the code will not cause any IndexErrors to be ([]-operator) in the code will not cause any IndexErrors to be
raised. Lists, tuples, and strings are affected only if the index raised. Lists, tuples, and strings are affected only if the index
can be determined to be non-negative (or if ``wraparound`` is False). can be determined to be non-negative (or if ``wraparound`` is False).
Conditions Conditions
which would normally trigger an IndexError may instead cause which would normally trigger an IndexError may instead cause
segfaults or data corruption if this is set to False. segfaults or data corruption if this is set to False.
...@@ -338,12 +338,12 @@ Cython code. Here is the list of currently supported directives: ...@@ -338,12 +338,12 @@ Cython code. Here is the list of currently supported directives:
set to ``None``. Otherwise a check is inserted and the set to ``None``. Otherwise a check is inserted and the
appropriate exception is raised. This is off by default for appropriate exception is raised. This is off by default for
performance reasons. Default is False. performance reasons. Default is False.
``overflowcheck`` (True / False) ``overflowcheck`` (True / False)
If set to True, raise errors on overflowing C integer arithmetic If set to True, raise errors on overflowing C integer arithmetic
operations. Incurs a modest runtime penalty, but is much faster than operations. Incurs a modest runtime penalty, but is much faster than
using Python ints. Default is False. using Python ints. Default is False.
``overflowcheck.fold`` (True / False) ``overflowcheck.fold`` (True / False)
If set to True, and overflowcheck is True, check the overflow bit for If set to True, and overflowcheck is True, check the overflow bit for
nested, side-effect-free arithmetic expressions once rather than at every nested, side-effect-free arithmetic expressions once rather than at every
......
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