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
49e7d509
Commit
49e7d509
authored
Feb 03, 2012
by
Mark Florisson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Acquire GIL in nogil contexts to raise UnboundLocalError for unbound memoryview slices
parent
a55ce63c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
2 deletions
+36
-2
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+5
-1
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+19
-1
tests/run/memoryview.pyx
tests/run/memoryview.pyx
+11
-0
tests/run/memslice.pyx
tests/run/memslice.pyx
+1
-0
No files found.
Cython/Compiler/Code.py
View file @
49e7d509
...
...
@@ -1784,12 +1784,16 @@ class CCodeWriter(object):
# return self.putln("if (unlikely(%s < 0)) %s" % (value, self.error_goto(pos))) # TODO this path is almost _never_ taken, yet this macro makes is slower!
return
self
.
putln
(
"if (%s < 0) %s"
%
(
value
,
self
.
error_goto
(
pos
)))
def
put_error_if_unbound
(
self
,
pos
,
entry
):
def
put_error_if_unbound
(
self
,
pos
,
entry
,
in_nogil_context
=
False
):
import
ExprNodes
if
entry
.
from_closure
:
func
=
'__Pyx_RaiseClosureNameError'
self
.
globalstate
.
use_utility_code
(
ExprNodes
.
raise_closure_name_error_utility_code
)
elif
entry
.
type
.
is_memoryviewslice
and
in_nogil_context
:
func
=
'__Pyx_RaiseUnboundMemoryviewSliceNogil'
self
.
globalstate
.
use_utility_code
(
ExprNodes
.
raise_unbound_memoryview_utility_code_nogil
)
else
:
func
=
'__Pyx_RaiseUnboundLocalError'
self
.
globalstate
.
use_utility_code
(
...
...
Cython/Compiler/ExprNodes.py
View file @
49e7d509
...
...
@@ -1704,7 +1704,7 @@ class NameNode(AtomicExprNode):
memslice_check
=
entry
.
type
.
is_memoryviewslice
and
self
.
initialized_check
if
null_code
and
raise_unbound
and
(
entry
.
type
.
is_pyobject
or
memslice_check
):
code
.
put_error_if_unbound
(
self
.
pos
,
entry
)
code
.
put_error_if_unbound
(
self
.
pos
,
entry
,
self
.
in_nogil_context
)
def
generate_assignment_code
(
self
,
rhs
,
code
):
#print "NameNode.generate_assignment_code:", self.name ###
...
...
@@ -9670,6 +9670,24 @@ static CYTHON_INLINE void __Pyx_RaiseClosureNameError(const char *varname) {
}
"""
)
# Don't inline the function, it should really never be called in production
raise_unbound_memoryview_utility_code_nogil
=
UtilityCode
(
proto
=
"""
static void __Pyx_RaiseUnboundMemoryviewSliceNogil(const char *varname);
"""
,
impl
=
"""
static void __Pyx_RaiseUnboundMemoryviewSliceNogil(const char *varname) {
#ifdef WITH_THREAD
PyGILState_STATE gilstate = PyGILState_Ensure();
#endif
__Pyx_RaiseUnboundLocalError(varname);
#ifdef WITH_THREAD")
PyGILState_Release(gilstate);
#endif
}
"""
,
requires
=
[
raise_unbound_local_error_utility_code
])
#------------------------------------------------------------------------------------
getitem_dict_utility_code
=
UtilityCode
(
...
...
tests/run/memoryview.pyx
View file @
49e7d509
...
...
@@ -197,6 +197,17 @@ def test_cdef_attribute():
print
ExtClass
().
mview
@
cython
.
boundscheck
(
False
)
def
test_nogil_unbound_localerror
():
"""
>>> test_nogil_unbound_localerror()
Traceback (most recent call last):
...
UnboundLocalError: local variable 'm' referenced before assignment
"""
cdef
int
[:]
m
with
nogil
:
m
[
0
]
=
10
def
basic_struct
(
MyStruct
[:]
mslice
):
"""
...
...
tests/run/memslice.pyx
View file @
49e7d509
...
...
@@ -2043,3 +2043,4 @@ def test_dtype_object_scalar_assignment():
(
<
object
>
m
)[:]
=
SingleObject
(
3
)
assert
m
[
0
]
==
m
[
4
]
==
m
[
-
1
]
==
3
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