Commit 50012a63 authored by Stefan Behnel's avatar Stefan Behnel

fix annotation of modules that do not generate any C code for user sources

parent 7c762d67
......@@ -140,7 +140,7 @@ function toggleDiv(id) {
error_goto = re.compile(ur'((; *if .*)? \{__pyx_filename = .*goto __pyx_L\w+;\})')
refnanny = re.compile(u'(__Pyx_X?(GOT|GIVE)REF|__Pyx_RefNanny[A-Za-z]+)')
code_source_file = self.code[source_filename]
code_source_file = self.code.get(source_filename, {})
for line in lines:
k += 1
......
# cython: autotestdict=False
# mode: error
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