Commit 14746524 authored by Stefan Behnel's avatar Stefan Behnel

fix compiler crash due to missing parameter in subtype signature

parent e3f5343f
......@@ -32,7 +32,7 @@ class StringParseContext(Main.Context):
create_testscope=False)
self.module_name = name
def find_module(self, module_name, relative_to=None, pos=None, need_pxd=1):
def find_module(self, module_name, relative_to=None, pos=None, need_pxd=1, absolute_fallback=True):
if module_name not in (self.module_name, 'cython'):
raise AssertionError("Not yet supporting any cimports/includes from string code snippets")
return ModuleScope(module_name, parent_module=None, context=self)
......
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