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

This commit is contained in:
Greg Ward 2000-08-13 00:41:40 +00:00
parent 45b87bc96d
commit 1f6a0d4568
1 changed files with 1 additions and 1 deletions

View File

@ -104,6 +104,6 @@ class Extension:
self.extra_objects = extra_objects or []
self.extra_compile_args = extra_compile_args or []
self.extra_link_args = extra_link_args or []
self.export_symbols = export_symbols
self.export_symbols = export_symbols or []
# class Extension