Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
cc788b95
Commit
cc788b95
authored
Jan 03, 2013
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More overflowcheck documentation.
parent
72d3b07c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
CHANGES.rst
CHANGES.rst
+4
-0
docs/src/reference/compilation.rst
docs/src/reference/compilation.rst
+8
-1
No files found.
CHANGES.rst
View file @
cc788b95
...
@@ -8,6 +8,10 @@ Cython Changelog
...
@@ -8,6 +8,10 @@ Cython Changelog
Features added
Features added
--------------
--------------
* Added a directive ``overflowcheck`` which raises an OverflowException when
arithmetic with C ints overflow. This has a modest performance penalty, but
is much faster than using Python ints.
* Calls to nested Python functions are resolved at compile time.
* Calls to nested Python functions are resolved at compile time.
* Type inference works across nested functions.
* Type inference works across nested functions.
...
...
docs/src/reference/compilation.rst
View file @
cc788b95
...
@@ -151,8 +151,15 @@ Cython code. Here is the list of currently supported directives:
...
@@ -151,8 +151,15 @@ Cython code. Here is the list of currently supported directives:
``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
slight runtime penalty, but
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)
If set to True, and overflowcheck is True, check the overflow bit for
nested, side-effect-free arithmetic expressions once rather than at every
step. Depending on the compiler, architecture, and optimization settings,
this may help or hurt performance. A simple suite of benchmarks can be
found in ``Demos/overflow_perf.pyx``. Default is True.
``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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment