Merged revisions 76861 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76861 | mark.dickinson | 2009-12-16 20:13:40 +0000 (Wed, 16 Dec 2009) | 3 lines
Issue #3366: Add expm1 function to math module. Thanks Eric Smith for
testing on Windows.
........
diff --git a/setup.py b/setup.py
index 43b6a6a..3666e8f 100644
--- a/setup.py
+++ b/setup.py
@@ -398,7 +398,7 @@
libraries=math_libs) )
# math library functions, e.g. sin()
- exts.append( Extension('math', ['mathmodule.c'],
+ exts.append( Extension('math', ['mathmodule.c', '_math.c'],
libraries=math_libs) )
# time operations and variables
exts.append( Extension('time', ['timemodule.c'],