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
Xavier Thompson
cython
Commits
271464ba
Commit
271464ba
authored
Dec 15, 2020
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disallow sending 'locked&' instances to another thread
parent
5fa9a0ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+5
-0
No files found.
Cython/Compiler/Symtab.py
View file @
271464ba
...
...
@@ -2991,6 +2991,11 @@ class CppClassScope(Scope):
if
(
self
.
parent_type
.
is_cyp_class
and
type
.
is_static_method
and
name
not
in
(
"<alloc>"
,
"__new__"
)):
entry
.
static_cname
=
"%s__static__%s"
%
(
Naming
.
func_prefix
,
cname
or
name
)
if
type
.
self_qualifier
in
(
'locked&'
,):
reify
=
False
if
any
(
arg
.
type
.
is_qualified_cyp_class
and
arg
.
type
.
qualifier
in
(
'locked&'
,)
for
arg
in
type
.
args
):
reify
=
False
if
reify
:
self
.
reify_method
(
entry
)
#if prev_entry and not defining:
...
...
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