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
bee7b699
Commit
bee7b699
authored
6 years ago
by
mattip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for fused nodes
parent
07aaffae
nogil_cypclass_acthon_on_rc8v3
snippets_article
nogil_cypclass_rc8
nogil_cypclass_lock_on_rc8v3
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+5
-4
No files found.
Cython/Compiler/ExprNodes.py
View file @
bee7b699
...
@@ -6976,7 +6976,8 @@ class AttributeNode(ExprNode):
...
@@ -6976,7 +6976,8 @@ class AttributeNode(ExprNode):
self
.
obj
=
self
.
obj
.
analyse_types
(
env
)
self
.
obj
=
self
.
obj
.
analyse_types
(
env
)
self
.
analyse_attribute
(
env
)
self
.
analyse_attribute
(
env
)
if
self
.
entry
and
self
.
entry
.
is_cmethod
and
not
self
.
is_called
:
if
self
.
entry
and
self
.
entry
.
is_cmethod
and
not
self
.
is_called
:
# It must be a property method. This should be done at a different level??
if
getattr
(
self
.
entry
,
'is_cgetter'
,
False
):
# This should be done at a different level??
self
.
is_called
=
1
self
.
is_called
=
1
self
.
op
=
''
self
.
op
=
''
self
.
result_ctype
=
self
.
type
.
return_type
self
.
result_ctype
=
self
.
type
.
return_type
...
...
This diff is collapsed.
Click to expand it.
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