Commit 63a273a4 authored by Xavier Thompson's avatar Xavier Thompson

Fix trailing whitespaces

parent ad0c35e9
...@@ -1629,7 +1629,7 @@ class CppClassNode(CStructOrUnionDefNode, BlockNode): ...@@ -1629,7 +1629,7 @@ class CppClassNode(CStructOrUnionDefNode, BlockNode):
cfunc_type = cfunc_method.type cfunc_type = cfunc_method.type
cfunc_return_type = cfunc_type.return_type cfunc_return_type = cfunc_type.return_type
# > TODO: the Python-incompatibility is too conservative: # > TODO: the Python-incompatibility is too conservative:
# some types have not yet resolved that they can coerce to PyObject # some types have not yet resolved that they can coerce to PyObject
# in particular, any cypclass not yet examined ? # in particular, any cypclass not yet examined ?
......
...@@ -721,7 +721,7 @@ class Scope(object): ...@@ -721,7 +721,7 @@ class Scope(object):
# Declare a shadow default constructor # Declare a shadow default constructor
wrapper_type = PyrexTypes.CFuncType(entry.type, [], nogil=1) wrapper_type = PyrexTypes.CFuncType(entry.type, [], nogil=1)
wrapper_cname = "%s__constructor__%s" % (Naming.func_prefix, name) wrapper_cname = "%s__constructor__%s" % (Naming.func_prefix, name)
wrapper_name = "<constructor>" wrapper_name = "<constructor>"
wrapper_entry = scope.declare(wrapper_name, wrapper_cname, wrapper_type, pos, visibility) wrapper_entry = scope.declare(wrapper_name, wrapper_cname, wrapper_type, pos, visibility)
wrapper_type.entry = wrapper_entry wrapper_type.entry = wrapper_entry
wrapper_entry.is_default = 1 wrapper_entry.is_default = 1
......
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