Commit f14767eb authored by Stefan Behnel's avatar Stefan Behnel

whitespace

parent a4ae7f9e
...@@ -2340,10 +2340,10 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode): ...@@ -2340,10 +2340,10 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
wmain = Options.embed wmain = Options.embed
code.globalstate.use_utility_code( code.globalstate.use_utility_code(
main_method.specialize( main_method.specialize(
module_name = env.module_name, module_name=env.module_name,
module_is_main = module_is_main, module_is_main=module_is_main,
main_method = Options.embed, main_method=Options.embed,
wmain_method = wmain)) wmain_method=wmain))
def generate_pymoduledef_struct(self, env, code): def generate_pymoduledef_struct(self, env, code):
if env.doc: if env.doc:
...@@ -2937,8 +2937,8 @@ bad: ...@@ -2937,8 +2937,8 @@ bad:
#endif #endif
return ret; return ret;
} }
""" % {'IMPORT_STAR' : Naming.import_star, """ % {'IMPORT_STAR': Naming.import_star,
'IMPORT_STAR_SET' : Naming.import_star_set } 'IMPORT_STAR_SET': Naming.import_star_set}
refnanny_utility_code = UtilityCode.load("Refnanny", "ModuleSetupCode.c") refnanny_utility_code = UtilityCode.load("Refnanny", "ModuleSetupCode.c")
......
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