Commit 1d3e8e21 authored by Tarek Ziadé's avatar Tarek Ziadé

Issue #6545: Removed assert statements in distutils.Extension, so the behavior...

Issue #6545: Removed assert statements in distutils.Extension, so the behavior is similar when used with -O
parent 01a07bef
......@@ -103,10 +103,11 @@ class Extension:
optional=None,
**kw # To catch unknown keywords
):
assert isinstance(name, str), "'name' must be a string"
assert (isinstance(sources, list) and
all(isinstance(v, str) for v in sources)), \
"'sources' must be a list of strings"
if not isinstance(name, str):
raise AssertionError("'name' must be a string")
if not (isinstance(sources, list) and
all(isinstance(v, str) for v in sources)):
raise AssertionError("'sources' must be a list of strings")
self.name = name
self.sources = sources
......
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