api_coverage.py: Include all files in cdef search

Fixes Elm
This commit is contained in:
Kai Huuhko 2015-12-17 06:12:40 +02:00
parent 06cb7ad598
commit 16f7cb1a24
1 changed files with 2 additions and 2 deletions

View File

@ -163,8 +163,8 @@ def get_pyapis(pxd_path, header_name, prefix):
for path, dirs, files in os.walk(pxd_path):
for f in files:
if not f.endswith(".pxd"):
continue
# if not f.endswith(".pxd"):
# continue
open_args = (os.path.join(path, f),)
open_kwargs = dict(mode="r")
if sys.version_info[0] > 2: