summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-16 20:13:40 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-12-16 20:13:40 (GMT)
commit9cae178f21745eaa2cbefb74b925bea1322a2baa (patch)
tree6d3c591dad0aee22b562b89635ab759efd708e0b /setup.py
parent98e3df38fd863af8f399739e461f84058e7bcfe0 (diff)
downloadcpython-9cae178f21745eaa2cbefb74b925bea1322a2baa.zip
cpython-9cae178f21745eaa2cbefb74b925bea1322a2baa.tar.gz
cpython-9cae178f21745eaa2cbefb74b925bea1322a2baa.tar.bz2
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 d7ef51e..6b8ffc4 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']) )