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
5f2a3e3f
Commit
5f2a3e3f
authored
Sep 16, 2020
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow calling static methods on const objects
parent
53324e72
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+1
-1
No files found.
Cython/Compiler/PyrexTypes.py
View file @
5f2a3e3f
...
...
@@ -5163,7 +5163,7 @@ def best_match(arg_types, functions, pos=None, env=None, args=None, throw=False)
errors
.
append
((
func
,
error_mesg
))
continue
# Skip non_const methods called on const object
if
func_type
.
is_const
and
not
func_type
.
is_const_method
:
if
func_type
.
is_const
and
not
func_type
.
is_const_method
and
not
func_type
.
is_static_method
:
# Impose const-correctness only on cypclass methods for now
if
func_type
.
is_cyp_class_method
:
error_mesg
=
"Cannot call non-const method on const object"
...
...
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