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
78a87802
Commit
78a87802
authored
Nov 08, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
second try to fix ticket #583: method signatures of overridden C methods in pure mode
parent
7e54d9a4
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
90 additions
and
19 deletions
+90
-19
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+12
-7
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/ParseTreeTransforms.py
+2
-6
tests/run/pure_mode_cmethod_inheritance_T583.pxd
tests/run/pure_mode_cmethod_inheritance_T583.pxd
+16
-2
tests/run/pure_mode_cmethod_inheritance_T583.py
tests/run/pure_mode_cmethod_inheritance_T583.py
+60
-4
No files found.
Cython/Compiler/Nodes.py
View file @
78a87802
...
@@ -534,8 +534,9 @@ class CFuncDeclaratorNode(CDeclaratorNode):
...
@@ -534,8 +534,9 @@ class CFuncDeclaratorNode(CDeclaratorNode):
if
nonempty
:
if
nonempty
:
nonempty
-=
1
nonempty
-=
1
func_type_args
=
[]
func_type_args
=
[]
for
arg_node
in
self
.
args
:
for
i
,
arg_node
in
enumerate
(
self
.
args
):
name_declarator
,
type
=
arg_node
.
analyse
(
env
,
nonempty
=
nonempty
)
name_declarator
,
type
=
arg_node
.
analyse
(
env
,
nonempty
=
nonempty
,
is_self_arg
=
(
i
==
0
and
env
.
is_c_class_scope
))
name
=
name_declarator
.
name
name
=
name_declarator
.
name
if
name_declarator
.
cname
:
if
name_declarator
.
cname
:
error
(
self
.
pos
,
error
(
self
.
pos
,
...
@@ -649,8 +650,9 @@ class CArgDeclNode(Node):
...
@@ -649,8 +650,9 @@ class CArgDeclNode(Node):
default_value
=
None
default_value
=
None
annotation
=
None
annotation
=
None
def
analyse
(
self
,
env
,
nonempty
=
0
):
def
analyse
(
self
,
env
,
nonempty
=
0
,
is_self_arg
=
False
):
#print "CArgDeclNode.analyse: is_self_arg =", self.is_self_arg ###
if
is_self_arg
:
self
.
base_type
.
is_self_arg
=
self
.
is_self_arg
=
True
if
self
.
type
is
None
:
if
self
.
type
is
None
:
# The parser may missinterpret names as types...
# The parser may missinterpret names as types...
# We fix that here.
# We fix that here.
...
@@ -1907,12 +1909,15 @@ class DefNode(FuncDefNode):
...
@@ -1907,12 +1909,15 @@ class DefNode(FuncDefNode):
is_overridable
=
True
)
is_overridable
=
True
)
cfunc
=
CVarDefNode
(
self
.
pos
,
type
=
cfunc_type
)
cfunc
=
CVarDefNode
(
self
.
pos
,
type
=
cfunc_type
)
else
:
else
:
if
scope
is
None
:
scope
=
cfunc
.
scope
cfunc_type
=
cfunc
.
type
cfunc_type
=
cfunc
.
type
if
len
(
self
.
args
)
!=
len
(
cfunc_type
.
args
)
or
cfunc_type
.
has_varargs
:
if
len
(
self
.
args
)
!=
len
(
cfunc_type
.
args
)
or
cfunc_type
.
has_varargs
:
error
(
self
.
pos
,
"wrong number of arguments"
)
error
(
self
.
pos
,
"wrong number of arguments"
)
error
(
cfunc
.
pos
,
"previous declaration here"
)
error
(
cfunc
.
pos
,
"previous declaration here"
)
for
formal_arg
,
type_arg
in
zip
(
self
.
args
,
cfunc_type
.
args
):
for
i
,
(
formal_arg
,
type_arg
)
in
enumerate
(
zip
(
self
.
args
,
cfunc_type
.
args
)):
name_declarator
,
type
=
formal_arg
.
analyse
(
cfunc
.
scope
,
nonempty
=
1
)
name_declarator
,
type
=
formal_arg
.
analyse
(
scope
,
nonempty
=
1
,
is_self_arg
=
(
i
==
0
and
scope
.
is_c_class_scope
))
if
type
is
None
or
type
is
PyrexTypes
.
py_object_type
:
if
type
is
None
or
type
is
PyrexTypes
.
py_object_type
:
formal_arg
.
type
=
type_arg
.
type
formal_arg
.
type
=
type_arg
.
type
formal_arg
.
name_declarator
=
name_declarator
formal_arg
.
name_declarator
=
name_declarator
...
...
Cython/Compiler/ParseTreeTransforms.py
View file @
78a87802
...
@@ -1233,15 +1233,11 @@ class AlignFunctionDefinitions(CythonTransform):
...
@@ -1233,15 +1233,11 @@ class AlignFunctionDefinitions(CythonTransform):
def
visit_DefNode
(
self
,
node
):
def
visit_DefNode
(
self
,
node
):
pxd_def
=
self
.
scope
.
lookup
(
node
.
name
)
pxd_def
=
self
.
scope
.
lookup
(
node
.
name
)
if
pxd_def
:
if
pxd_def
:
if
self
.
scope
.
is_c_class_scope
and
len
(
pxd_def
.
type
.
args
)
>
0
:
if
not
pxd_def
.
is_cfunction
:
# The self parameter type needs adjusting.
pxd_def
.
type
.
args
[
0
].
type
=
self
.
scope
.
parent_type
if
pxd_def
.
is_cfunction
:
node
=
node
.
as_cfunction
(
pxd_def
)
else
:
error
(
node
.
pos
,
"'%s' redeclared"
%
node
.
name
)
error
(
node
.
pos
,
"'%s' redeclared"
%
node
.
name
)
error
(
pxd_def
.
pos
,
"previous declaration here"
)
error
(
pxd_def
.
pos
,
"previous declaration here"
)
return
None
return
None
node
=
node
.
as_cfunction
(
pxd_def
)
elif
self
.
scope
.
is_module_scope
and
self
.
directives
[
'auto_cpdef'
]:
elif
self
.
scope
.
is_module_scope
and
self
.
directives
[
'auto_cpdef'
]:
node
=
node
.
as_cfunction
(
scope
=
self
.
scope
)
node
=
node
.
as_cfunction
(
scope
=
self
.
scope
)
# Enable this when internal def functions are allowed.
# Enable this when internal def functions are allowed.
...
...
tests/run/pure_mode_cmethod_inheritance_T583.pxd
View file @
78a87802
cdef
class
Base
:
cdef
class
Base
:
cpdef
str
method
(
self
)
cpdef
str
noargs
(
self
)
cpdef
str
int_arg
(
self
,
int
i
)
cpdef
str
_class
(
tp
)
cdef
class
Derived
(
Base
):
cdef
class
Derived
(
Base
):
cpdef
str
method
(
self
)
cpdef
str
noargs
(
self
)
cpdef
str
int_arg
(
self
,
int
i
)
cpdef
str
_class
(
tp
)
cdef
class
DerivedDerived
(
Derived
):
cpdef
str
noargs
(
self
)
cpdef
str
int_arg
(
self
,
int
i
)
cpdef
str
_class
(
tp
)
cdef
class
Derived2
(
Base
):
cpdef
str
noargs
(
self
)
cpdef
str
int_arg
(
self
,
int
i
)
cpdef
str
_class
(
tp
)
tests/run/pure_mode_cmethod_inheritance_T583.py
View file @
78a87802
class
Base
(
object
):
class
Base
(
object
):
'''
'''
>>> base = Base()
>>> base = Base()
>>> print(base.method())
>>> print(base.noargs())
Base
>>> print(base.int_arg(1))
Base
>>> print(base._class())
Base
Base
'''
'''
def
method
(
self
):
def
noargs
(
self
):
return
"Base"
def
int_arg
(
self
,
i
):
return
"Base"
@
classmethod
def
_class
(
tp
):
return
"Base"
return
"Base"
class
Derived
(
Base
):
class
Derived
(
Base
):
'''
'''
>>> derived = Derived()
>>> derived = Derived()
>>> print(derived.method())
>>> print(derived.noargs())
Derived
>>> print(derived.int_arg(1))
Derived
>>> print(derived._class())
Derived
Derived
'''
'''
def
method
(
self
):
def
noargs
(
self
):
return
"Derived"
def
int_arg
(
self
,
i
):
return
"Derived"
@
classmethod
def
_class
(
tp
):
return
"Derived"
return
"Derived"
class
DerivedDerived
(
Derived
):
'''
>>> derived = DerivedDerived()
>>> print(derived.noargs())
DerivedDerived
>>> print(derived.int_arg(1))
DerivedDerived
>>> print(derived._class())
DerivedDerived
'''
def
noargs
(
self
):
return
"DerivedDerived"
def
int_arg
(
self
,
i
):
return
"DerivedDerived"
@
classmethod
def
_class
(
tp
):
return
"DerivedDerived"
class
Derived2
(
Base
):
'''
>>> derived = Derived2()
>>> print(derived.noargs())
Derived2
>>> print(derived.int_arg(1))
Derived2
>>> print(derived._class())
Derived2
'''
def
noargs
(
self
):
return
"Derived2"
def
int_arg
(
self
,
i
):
return
"Derived2"
@
classmethod
def
_class
(
tp
):
return
"Derived2"
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