Commit 857b286b authored by Greg Ward's avatar Greg Ward

Rene Liebscher: ext.export_symbols is now always a list (added 'or []').

parent bb34a5bd
...@@ -104,6 +104,6 @@ class Extension: ...@@ -104,6 +104,6 @@ class Extension:
self.extra_objects = extra_objects or [] self.extra_objects = extra_objects or []
self.extra_compile_args = extra_compile_args or [] self.extra_compile_args = extra_compile_args or []
self.extra_link_args = extra_link_args or [] self.extra_link_args = extra_link_args or []
self.export_symbols = export_symbols self.export_symbols = export_symbols or []
# class Extension # class Extension
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