Commit 9eaa8248 authored by Ralf Schmitt's avatar Ralf Schmitt

ignore gevent/ares.py in walk_modules

stupid setuptools creates a pure python load for ares.so. this makes
test__execmodules.py work again.
parent 7c639b8e
......@@ -374,7 +374,7 @@ def walk_modules(basedir=None, modpath=None, include_so=False):
for p, m in walk_modules(path, modpath + fn + "."):
yield p, m
continue
if fn.endswith('.py') and fn not in ['__init__.py', 'core.py']:
if fn.endswith('.py') and fn not in ['__init__.py', 'core.py', 'ares.py']:
yield path, modpath + fn[:-3]
elif include_so and fn.endswith('.so'):
if fn.endswith('_d.so'):
......
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