From c94300570f4c01fb6c96f68889b35748dd717d8c Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 9 Dec 2010 03:48:07 -0800 Subject: [PATCH] Fix bug with -t option. --- Cython/Compiler/Main.py | 1 + 1 file changed, 1 insertion(+) 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() -- 2.26.2