Commit 1d552268 authored by Robert Bradshaw's avatar Robert Bradshaw

Overflow check docs.

parent 82d16f78
...@@ -148,6 +148,11 @@ Cython code. Here is the list of currently supported directives: ...@@ -148,6 +148,11 @@ 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)
If set to True, raise errors on overflowing C integer arithmetic
operations. Incurs a slight runtime penalty, but much faster than
using Python ints. Default is False.
``embedsignature`` (True / False) ``embedsignature`` (True / False)
If set to True, Cython will embed a textual copy of the call If set to True, Cython will embed a textual copy of the call
......
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