mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Rene Liebscher: ext.export_symbols is now always a list (added 'or []').
This commit is contained in:
parent
45b87bc96d
commit
1f6a0d4568
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue