Commit 6bb440fa authored by Bradley M. Froehle's avatar Bradley M. Froehle

Fix "missing cimport: ... cython" warning.

parent 684ecc93
......@@ -378,7 +378,7 @@ class DependencyTree(object):
else:
pxd_list = []
for module in self.cimports(filename):
if module[:7] == 'cython.':
if module[:7] == 'cython.' or module == 'cython':
continue
pxd_file = self.find_pxd(module, filename)
if pxd_file is None:
......
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