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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
6291a297
Commit
6291a297
authored
Jun 30, 2011
by
Lars Buitinck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Translate C++ std::bad_cast exception to Python TypeError
parent
2731cebc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
0 deletions
+28
-0
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+2
-0
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+1
-0
tests/run/cpp_exceptions.pyx
tests/run/cpp_exceptions.pyx
+15
-0
tests/run/cpp_exceptions_helper.h
tests/run/cpp_exceptions_helper.h
+10
-0
No files found.
Cython/Compiler/ExprNodes.py
View file @
6291a297
...
...
@@ -8228,6 +8228,8 @@ static void __Pyx_CppExn2PyErr() {
PyErr_SetString(PyExc_ValueError, exn.what());
} catch (const std::bad_alloc& exn) {
PyErr_SetString(PyExc_MemoryError, exn.what());
} catch (const std::bad_cast& exn) {
PyErr_SetString(PyExc_TypeError, exn.what());
} catch (const std::ios_base::failure& exn) {
// Unfortunately, in standard C++ we have no way of distinguishing EOF
// from other errors here; be careful with the exception mask
...
...
Cython/Compiler/Nodes.py
View file @
6291a297
...
...
@@ -580,6 +580,7 @@ class CFuncDeclaratorNode(CDeclaratorNode):
env
.
add_include_file
(
'ios'
)
# for std::ios_base::failure
env
.
add_include_file
(
'new'
)
# for std::bad_alloc
env
.
add_include_file
(
'stdexcept'
)
env
.
add_include_file
(
'typeinfo'
)
# for std::bad_cast
if
return_type
.
is_pyobject
\
and
(
self
.
exception_value
or
self
.
exception_check
)
\
and
self
.
exception_check
!=
'+'
:
...
...
tests/run/cpp_exceptions.pyx
View file @
6291a297
...
...
@@ -16,6 +16,7 @@ cdef extern from "cpp_exceptions_helper.h":
cdef
void
raise_memory
"raise_memory"
()
except
+
cdef
void
raise_overflow
"raise_overflow"
()
except
+
cdef
void
raise_range_error
"raise_range_error"
()
except
+
cdef
void
raise_typeerror
"raise_typeerror"
()
except
+
cdef
void
raise_underflow
"raise_underflow"
()
except
+
cdef
cppclass
Foo
:
...
...
@@ -65,6 +66,20 @@ def test_range_error():
"""
raise_range_error
()
def
test_typeerror
():
"""
>>> test_typeerror()
Traceback (most recent call last):
...
TypeError
"""
# Re-raise the exception without a description string because we can't
# rely on the implementation-defined value of what() in the doctest.
try
:
raise_typeerror
()
except
TypeError
:
raise
TypeError
def
test_underflow
():
"""
>>> test_underflow()
...
...
tests/run/cpp_exceptions_helper.h
View file @
6291a297
...
...
@@ -44,6 +44,16 @@ void raise_range_error() {
throw
std
::
range_error
(
"range_error"
);
}
struct
Base
{
virtual
~
Base
()
{}
};
struct
Derived
:
Base
{
void
use
()
const
{
abort
();
}
};
void
raise_typeerror
()
{
Base
foo
;
Base
&
bar
=
foo
;
// prevents "dynamic_cast can never succeed" warning
Derived
&
baz
=
dynamic_cast
<
Derived
&>
(
bar
);
baz
.
use
();
// not reached; prevents "unused variable" warning
}
void
raise_underflow
()
{
throw
std
::
underflow_error
(
"underflow_error"
);
}
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