From 67c183d5f62dcba600ceaa7a240157a3c2e5d5c2 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Mon, 27 May 2013 10:43:22 -0700 Subject: [PATCH] Remove broken recursive option. --- Cython/Compiler/CmdLine.py | 6 ------ Cython/Compiler/Main.py | 22 +++------------------- Cython/Compiler/ModuleNode.py | 16 ---------------- 3 files changed, 3 insertions(+), 41 deletions(-) diff --git a/Cython/Compiler/CmdLine.py b/Cython/Compiler/CmdLine.py index e41d813..01ca68e 100644 --- a/Cython/Compiler/CmdLine.py +++ b/Cython/Compiler/CmdLine.py @@ -43,10 +43,6 @@ Options: -X, --directive =[, 1 or env.included_files: - dep_file = replace_suffix(result.c_file, ".dep") - f = open(dep_file, "w") - try: - for module in modules: - if module is not env: - f.write("cimport %s\n" % module.qualified_name) - for path in module.included_files: - f.write("include %s\n" % path) - finally: - f.close() - def generate_h_code(self, env, options, result): def h_entries(entries, api=0, pxd=0): return [entry for entry in entries -- 2.7.4