summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-16 20:13:40 +0000
committerMark Dickinson <dickinsm@gmail.com>2009-12-16 20:13:40 +0000
commit9cae178f21745eaa2cbefb74b925bea1322a2baa (patch)
tree6d3c591dad0aee22b562b89635ab759efd708e0b /setup.py
parent98e3df38fd863af8f399739e461f84058e7bcfe0 (diff)
downloadcpython-git-9cae178f21745eaa2cbefb74b925bea1322a2baa.tar.gz
Issue #3366: Add expm1 function to math module. Thanks Eric Smith for
testing on Windows.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index d7ef51ef0f..6b8ffc4e0e 100644
--- a/setup.py
+++ b/setup.py
@@ -414,7 +414,7 @@ class PyBuildExt(build_ext):
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) )
# fast string operations implemented in C
exts.append( Extension('strop', ['stropmodule.c']) )