Commit e967667d authored by Stefan Behnel's avatar Stefan Behnel

Reformat some long lines.

parent 336ca7b1
...@@ -957,7 +957,8 @@ def cythonize(module_list, exclude=None, nthreads=0, aliases=None, quiet=False, ...@@ -957,7 +957,8 @@ def cythonize(module_list, exclude=None, nthreads=0, aliases=None, quiet=False,
fingerprint = deps.transitive_fingerprint(source, extra) fingerprint = deps.transitive_fingerprint(source, extra)
else: else:
fingerprint = None fingerprint = None
to_compile.append((priority, source, c_file, fingerprint, quiet, to_compile.append((
priority, source, c_file, fingerprint, quiet,
options, not exclude_failures, module_metadata.get(m.name))) options, not exclude_failures, module_metadata.get(m.name)))
new_sources.append(c_file) new_sources.append(c_file)
modules_by_cfile[c_file].append(m) modules_by_cfile[c_file].append(m)
...@@ -1076,7 +1077,8 @@ else: ...@@ -1076,7 +1077,8 @@ else:
# TODO: Share context? Issue: pyx processing leaks into pxd module # TODO: Share context? Issue: pyx processing leaks into pxd module
@record_results @record_results
def cythonize_one(pyx_file, c_file, fingerprint, quiet, options=None, raise_on_failure=True, embedded_metadata=None, progress=""): def cythonize_one(pyx_file, c_file, fingerprint, quiet, options=None,
raise_on_failure=True, embedded_metadata=None, progress=""):
from ..Compiler.Main import compile, default_options from ..Compiler.Main import compile, default_options
from ..Compiler.Errors import CompileError, PyrexError from ..Compiler.Errors import CompileError, PyrexError
......
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