From: Robert Bradshaw Date: Thu, 9 Dec 2010 11:48:07 +0000 (-0800) Subject: Fix bug with -t option. X-Git-Tag: 0.14.beta1~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c94300570f4c01fb6c96f68889b35748dd717d8c;p=cython.git Fix bug with -t option. --- diff --git a/Cython/Compiler/Main.py b/Cython/Compiler/Main.py index e9f80b2d..ff4a3980 100644 --- a/Cython/Compiler/Main.py +++ b/Cython/Compiler/Main.py @@ -704,6 +704,7 @@ def compile_multiple(sources, options): a CompilationResultSet. Performs timestamp checking and/or recursion if these are specified in the options. """ + context = options.create_context() sources = [os.path.abspath(source) for source in sources] processed = set() results = CompilationResultSet()