Commit bbe9f1cb authored by Stefan Behnel's avatar Stefan Behnel

reverted rev 908 as it breaks using type names as argument names (such as 'file')

parent d97bdff5
...@@ -362,13 +362,8 @@ class CNameDeclaratorNode(CDeclaratorNode): ...@@ -362,13 +362,8 @@ 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 == '':
raise RuntimeError # 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
...@@ -429,7 +424,7 @@ class CFuncDeclaratorNode(CDeclaratorNode): ...@@ -429,7 +424,7 @@ class CFuncDeclaratorNode(CDeclaratorNode):
def analyse(self, return_type, env, nonempty = 0): def analyse(self, return_type, env, nonempty = 0):
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) name_declarator, type = arg_node.analyse(env, nonempty = nonempty)
name = name_declarator.name name = name_declarator.name
if name_declarator.cname: if name_declarator.cname:
error(self.pos, error(self.pos,
......
def f(obj, int i, float f, char *s1, char s2[]): def f(obj, int i, float f, char *s1, char s2[]):
pass pass
cdef g(obj, int i, float f, char *s1, char s2[]): \ No newline at end of file
pass
cdef do_g(object (*func)(object, int, float, char*, char*)):
return func(1, 2, 3.14159, "a", "b")
do_g(&g)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment