Commit 2838ff34 authored by Martin K. Scherer's avatar Martin K. Scherer

use only one call to isinstanceof

parent 67ad531e
......@@ -658,7 +658,7 @@ def create_extension_list(patterns, exclude=None, ctx=None, aliases=None, quiet=
base = None
exn_type = Extension
ext_language = language
elif isinstance(pattern, Extension) or isinstance(pattern, Extension_setuptools):
elif isinstance(pattern, (Extension, Extension_setuptools)):
for filepattern in pattern.sources:
if os.path.splitext(filepattern)[1] in ('.py', '.pyx'):
break
......
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