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
f5f34c7b
Commit
f5f34c7b
authored
Aug 24, 2012
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
implement bare 'raise' statement outside of except blocks
parent
9185e2ca
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
75 additions
and
3 deletions
+75
-3
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+5
-3
Cython/Utility/Exceptions.c
Cython/Utility/Exceptions.c
+35
-0
tests/run/reraise.py
tests/run/reraise.py
+35
-0
No files found.
Cython/Compiler/Nodes.py
View file @
f5f34c7b
...
...
@@ -5006,7 +5006,7 @@ class ReraiseStatNode(StatNode):
is_terminator
=
True
def
analyse_expressions
(
self
,
env
):
env
.
use_utility_code
(
restore_exception_utility_code
)
pass
nogil_check
=
Node
.
gil_error
gil_message
=
"Raising exception"
...
...
@@ -5014,6 +5014,7 @@ class ReraiseStatNode(StatNode):
def
generate_execution_code
(
self
,
code
):
vars
=
code
.
funcstate
.
exc_vars
if
vars
:
code
.
globalstate
.
use_utility_code
(
restore_exception_utility_code
)
for
varname
in
vars
:
code
.
put_giveref
(
varname
)
code
.
putln
(
"__Pyx_ErrRestore(%s, %s, %s);"
%
tuple
(
vars
))
...
...
@@ -5022,8 +5023,9 @@ class ReraiseStatNode(StatNode):
code
.
putln
()
code
.
putln
(
code
.
error_goto
(
self
.
pos
))
else
:
error
(
self
.
pos
,
"Reraise not inside except clause"
)
code
.
globalstate
.
use_utility_code
(
UtilityCode
.
load_cached
(
"ReRaiseException"
,
"Exceptions.c"
))
code
.
putln
(
"__Pyx_ReraiseException(); %s"
%
code
.
error_goto
(
self
.
pos
))
class
AssertStatNode
(
StatNode
):
# assert statement
...
...
Cython/Utility/Exceptions.c
View file @
f5f34c7b
...
...
@@ -255,6 +255,41 @@ bad:
return
-
1
;
}
/////////////// ReRaiseException.proto ///////////////
static
CYTHON_INLINE
void
__Pyx_ReraiseException
(
void
);
/*proto*/
/////////////// ReRaiseException.proto ///////////////
static
CYTHON_INLINE
void
__Pyx_ReraiseException
(
void
)
{
PyObject
*
type
=
NULL
,
*
value
=
NULL
,
*
tb
=
NULL
;
#if CYTHON_COMPILING_IN_CPYTHON
PyThreadState
*
tstate
=
PyThreadState_GET
();
type
=
tstate
->
exc_type
;
value
=
tstate
->
exc_value
;
tb
=
tstate
->
exc_traceback
;
#else
PyErr_GetExcInfo
(
type
,
value
,
tb
);
#endif
if
(
!
type
||
type
==
Py_None
)
{
#if !CYTHON_COMPILING_IN_CPYTHON
Py_XDECREF
(
type
);
Py_XDECREF
(
value
);
Py_XDECREF
(
tb
);
#endif
PyErr_SetString
(
PyExc_RuntimeError
,
"No active exception to reraise"
);
// message copied from Py3
}
else
{
#if CYTHON_COMPILING_IN_CPYTHON
Py_INCREF
(
type
);
Py_XINCREF
(
value
);
Py_XINCREF
(
tb
);
#endif
PyErr_Restore
(
type
,
value
,
tb
);
}
}
/////////////// SaveResetException.proto ///////////////
static
CYTHON_INLINE
void
__Pyx_ExceptionSave
(
PyObject
**
type
,
PyObject
**
value
,
PyObject
**
tb
);
/*proto*/
...
...
tests/run/reraise.py
0 → 100644
View file @
f5f34c7b
def
reraise
():
raise
def
test_reraise
():
"""
>>> test_reraise()
Traceback (most recent call last):
ValueError: TEST
"""
try
:
raise
ValueError
(
"TEST"
)
except
ValueError
:
raise
def
test_reraise_indirect
():
"""
>>> test_reraise_indirect()
Traceback (most recent call last):
ValueError: TEST INDIRECT
"""
try
:
raise
ValueError
(
"TEST INDIRECT"
)
except
ValueError
:
reraise
()
def
test_reraise_error
():
"""
>>> try: test_reraise_error()
... except (RuntimeError, TypeError): pass # Py2, Py3, ...
... else: print("FAILED")
"""
import
sys
sys
.
exc_clear
()
raise
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