diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-12-16 20:13:40 +0000 |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-12-16 20:13:40 +0000 |
commit | 9cae178f21745eaa2cbefb74b925bea1322a2baa (patch) | |
tree | 6d3c591dad0aee22b562b89635ab759efd708e0b /setup.py | |
parent | 98e3df38fd863af8f399739e461f84058e7bcfe0 (diff) | |
download | cpython-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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']) ) |