From a51b0104217cef5c087c914c1557927dff497b60 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Mon, 22 Nov 2010 17:36:12 -0800 Subject: [PATCH] Cythonize fix. --- Cython/Build/Dependencies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Build/Dependencies.py b/Cython/Build/Dependencies.py index 7af60c11..d74908f0 100644 --- a/Cython/Build/Dependencies.py +++ b/Cython/Build/Dependencies.py @@ -315,7 +315,7 @@ class DependencyTree(object): def immediate_dependencies(self, filename): all = list(self.cimported_files(filename)) - for extern in self.cimports_and_externs(filename): + for extern in sum(self.cimports_and_externs(filename), ()): all.append(os.path.normpath(os.path.join(os.path.dirname(filename), extern))) return tuple(all) -- 2.26.2