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
Kirill Smelkov
cython
Commits
ccc84a3f
Commit
ccc84a3f
authored
Aug 07, 2008
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-re-instate 908, everything should work now
parent
48868fbf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
4 deletions
+25
-4
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+10
-3
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+7
-0
tests/compile/cargdef.pyx
tests/compile/cargdef.pyx
+8
-1
No files found.
Cython/Compiler/Nodes.py
View file @
ccc84a3f
...
@@ -362,8 +362,12 @@ class CNameDeclaratorNode(CDeclaratorNode):
...
@@ -362,8 +362,12 @@ class CNameDeclaratorNode(CDeclaratorNode):
def
analyse
(
self
,
base_type
,
env
,
nonempty
=
0
):
def
analyse
(
self
,
base_type
,
env
,
nonempty
=
0
):
if
nonempty
and
self
.
name
==
''
:
if
nonempty
and
self
.
name
==
''
:
# Must have mistaken the name for the type.
# May have mistaken the name for the type.
self
.
name
=
base_type
.
name
if
base_type
.
is_ptr
or
base_type
.
is_array
or
base_type
.
is_buffer
:
error
(
self
.
pos
,
"Missing argument name"
)
elif
base_type
.
is_void
:
error
(
self
.
pos
,
"Use spam() rather than spam(void) to declare a function with no arguments."
)
self
.
name
=
base_type
.
declaration_code
(
""
,
for_display
=
1
,
pyrex
=
1
)
base_type
=
py_object_type
base_type
=
py_object_type
self
.
type
=
base_type
self
.
type
=
base_type
return
self
,
base_type
return
self
,
base_type
...
@@ -422,6 +426,8 @@ class CFuncDeclaratorNode(CDeclaratorNode):
...
@@ -422,6 +426,8 @@ class CFuncDeclaratorNode(CDeclaratorNode):
optional_arg_count
=
0
optional_arg_count
=
0
def
analyse
(
self
,
return_type
,
env
,
nonempty
=
0
):
def
analyse
(
self
,
return_type
,
env
,
nonempty
=
0
):
if
nonempty
:
nonempty
-=
1
func_type_args
=
[]
func_type_args
=
[]
for
arg_node
in
self
.
args
:
for
arg_node
in
self
.
args
:
name_declarator
,
type
=
arg_node
.
analyse
(
env
,
nonempty
=
nonempty
)
name_declarator
,
type
=
arg_node
.
analyse
(
env
,
nonempty
=
nonempty
)
...
@@ -1052,7 +1058,8 @@ class CFuncDefNode(FuncDefNode):
...
@@ -1052,7 +1058,8 @@ class CFuncDefNode(FuncDefNode):
def
analyse_declarations
(
self
,
env
):
def
analyse_declarations
(
self
,
env
):
base_type
=
self
.
base_type
.
analyse
(
env
)
base_type
=
self
.
base_type
.
analyse
(
env
)
name_declarator
,
type
=
self
.
declarator
.
analyse
(
base_type
,
env
,
self
.
body
is
not
None
)
# The 2 here is because we need both function and argument names.
name_declarator
,
type
=
self
.
declarator
.
analyse
(
base_type
,
env
,
nonempty
=
2
*
(
self
.
body
is
not
None
))
if
not
type
.
is_cfunction
:
if
not
type
.
is_cfunction
:
error
(
self
.
pos
,
error
(
self
.
pos
,
"Suite attached to non-function declaration"
)
"Suite attached to non-function declaration"
)
...
...
Cython/Compiler/PyrexTypes.py
View file @
ccc84a3f
...
@@ -287,6 +287,13 @@ class BuiltinObjectType(PyObjectType):
...
@@ -287,6 +287,13 @@ class BuiltinObjectType(PyObjectType):
def
type_test_code
(
self
,
arg
):
def
type_test_code
(
self
,
arg
):
return
'likely(Py%s_CheckExact(%s)) || (%s) == Py_None || (PyErr_Format(PyExc_TypeError, "Expected %s, got %%s", Py_TYPE(%s)->tp_name), 0)'
%
(
self
.
name
[
0
].
upper
()
+
self
.
name
[
1
:],
arg
,
arg
,
self
.
name
,
arg
)
return
'likely(Py%s_CheckExact(%s)) || (%s) == Py_None || (PyErr_Format(PyExc_TypeError, "Expected %s, got %%s", Py_TYPE(%s)->tp_name), 0)'
%
(
self
.
name
[
0
].
upper
()
+
self
.
name
[
1
:],
arg
,
arg
,
self
.
name
,
arg
)
def
declaration_code
(
self
,
entity_code
,
for_display
=
0
,
dll_linkage
=
None
,
pyrex
=
0
):
if
pyrex
or
for_display
:
return
self
.
base_declaration_code
(
self
.
name
,
entity_code
)
else
:
return
"%s *%s"
%
(
public_decl
(
"PyObject"
,
dll_linkage
),
entity_code
)
class
PyExtensionType
(
PyObjectType
):
class
PyExtensionType
(
PyObjectType
):
#
#
...
...
tests/compile/cargdef.pyx
View file @
ccc84a3f
def
f
(
obj
,
int
i
,
float
f
,
char
*
s1
,
char
s2
[]):
def
f
(
obj
,
int
i
,
float
f
,
char
*
s1
,
char
s2
[]):
pass
pass
\ No newline at end of file
cdef
g
(
obj
,
int
i
,
float
f
,
char
*
s1
,
char
s2
[]):
pass
cdef
do_g
(
object
(
*
func
)(
object
,
int
,
float
,
char
*
,
char
*
)):
return
func
(
1
,
2
,
3.14159
,
"a"
,
"b"
)
do_g
(
&
g
)
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