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
Gwenaël Samain
cython
Commits
1d625ac1
Commit
1d625ac1
authored
Jun 27, 2012
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rst fixes in docs
parent
34d7711b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
docs/src/userguide/language_basics.rst
docs/src/userguide/language_basics.rst
+2
-2
No files found.
docs/src/userguide/language_basics.rst
View file @
1d625ac1
...
@@ -181,7 +181,7 @@ form of exception value declaration::
...
@@ -181,7 +181,7 @@ form of exception value declaration::
...
...
The "?" indicates that the value ``-1`` only indicates a possible error. In this
The "?" indicates that the value ``-1`` only indicates a possible error. In this
case, Cython generates a call to :cfunc:`PyErr_Occurred` if the exception value is
case, Cython generates a call to :c
:
func:`PyErr_Occurred` if the exception value is
returned, to make sure it really is an error.
returned, to make sure it really is an error.
There is also a third form of exception value declaration::
There is also a third form of exception value declaration::
...
@@ -189,7 +189,7 @@ There is also a third form of exception value declaration::
...
@@ -189,7 +189,7 @@ There is also a third form of exception value declaration::
cdef int spam() except *:
cdef int spam() except *:
...
...
This form causes Cython to generate a call to :cfunc:`PyErr_Occurred` after
This form causes Cython to generate a call to :c
:
func:`PyErr_Occurred` after
every call to spam, regardless of what value it returns. If you have a
every call to spam, regardless of what value it returns. If you have a
function returning void that needs to propagate errors, you will have to use
function returning void that needs to propagate errors, you will have to use
this form, since there isn't any return value to test.
this form, since there isn't any return value to test.
...
...
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