summaryrefslogtreecommitdiff
path: root/numpy/distutils/lib2def.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/distutils/lib2def.py')
-rw-r--r--numpy/distutils/lib2def.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/distutils/lib2def.py b/numpy/distutils/lib2def.py
index 36c41f0b5..c42530931 100644
--- a/numpy/distutils/lib2def.py
+++ b/numpy/distutils/lib2def.py
@@ -27,9 +27,9 @@ py_ver = "%d%d" % tuple(sys.version_info[:2])
DEFAULT_NM = 'nm -Cs'
-DEF_HEADER = """LIBRARY python%s.dll
-;CODE PRELOAD MOVEABLE DISCARDABLE
-;DATA PRELOAD SINGLE
+DEF_HEADER = """LIBRARY python%s.dll
+;CODE PRELOAD MOVEABLE DISCARDABLE
+;DATA PRELOAD SINGLE
EXPORTS
""" % py_ver
@@ -88,7 +88,7 @@ dlist, flist = parse_nm(nm_output)"""
for sym in data:
if sym not in flist and (sym[:2] == 'Py' or sym[:3] == '_Py'):
dlist.append(sym)
-
+
dlist.sort()
flist.sort()
return dlist, flist