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
Boxiang Sun
cython
Commits
184482af
Commit
184482af
authored
Sep 03, 2010
by
Corbin Simpson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ExprNodes: Add C++ error handling for std::invalid_argument.
Also expand comments slightly.
parent
f1d781a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+6
-1
No files found.
Cython/Compiler/ExprNodes.py
View file @
184482af
...
@@ -7050,8 +7050,13 @@ static void __Pyx_CppExn2PyErr() {
...
@@ -7050,8 +7050,13 @@ static void __Pyx_CppExn2PyErr() {
; // let the latest Python exn pass through and ignore the current one
; // let the latest Python exn pass through and ignore the current one
else
else
throw;
throw;
} catch (const std::invalid_argument& exn) {
// Catch a handful of different errors here and turn them into the
// equivalent Python errors.
// Change invalid_argument to ValueError
PyErr_SetString(PyExc_ValueError, exn.what());
} catch (const std::out_of_range& exn) {
} catch (const std::out_of_range& exn) {
//
catch out_of_range explicitly so the proper Python exn may be raised
//
Change out_of_range to IndexError
PyErr_SetString(PyExc_IndexError, exn.what());
PyErr_SetString(PyExc_IndexError, exn.what());
} catch (const std::exception& exn) {
} catch (const std::exception& exn) {
PyErr_SetString(PyExc_RuntimeError, exn.what());
PyErr_SetString(PyExc_RuntimeError, exn.what());
...
...
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