Commit 43c9563e authored by Stefan Behnel's avatar Stefan Behnel

minor code formatting

parent 411d5427
...@@ -97,18 +97,19 @@ if include_debugger: ...@@ -97,18 +97,19 @@ if include_debugger:
def compile_cython_modules(profile=False, compile_more=False, cython_with_refnanny=False): def compile_cython_modules(profile=False, compile_more=False, cython_with_refnanny=False):
source_root = os.path.abspath(os.path.dirname(__file__)) source_root = os.path.abspath(os.path.dirname(__file__))
compiled_modules = ["Cython.Plex.Scanners", compiled_modules = [
"Cython.Plex.Actions", "Cython.Plex.Scanners",
"Cython.Compiler.Lexicon", "Cython.Plex.Actions",
"Cython.Compiler.Scanning", "Cython.Compiler.Lexicon",
"Cython.Compiler.Parsing", "Cython.Compiler.Scanning",
"Cython.Compiler.Visitor", "Cython.Compiler.Parsing",
"Cython.Compiler.FlowControl", "Cython.Compiler.Visitor",
"Cython.Compiler.Code", "Cython.Compiler.FlowControl",
"Cython.Runtime.refnanny", "Cython.Compiler.Code",
# "Cython.Compiler.FusedNode", "Cython.Runtime.refnanny",
"Cython.Tempita._tempita", # "Cython.Compiler.FusedNode",
] "Cython.Tempita._tempita",
]
if compile_more: if compile_more:
compiled_modules.extend([ compiled_modules.extend([
"Cython.Build.Dependencies", "Cython.Build.Dependencies",
......
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