Commit 8f146a67 authored by scoder's avatar scoder

Merge pull request #127 from bfroehle/_missing_cimport_cython

Fix "missing cimport: ... cython" warning.
parents 0927822c 6bb440fa
......@@ -392,7 +392,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