mirror of
https://github.com/python/cpython.git
synced 2025-09-15 21:26:04 +00:00
Issue #3366: Add expm1 function to math module. Thanks Eric Smith for
testing on Windows.
This commit is contained in:
parent
98e3df38fd
commit
9cae178f21
13 changed files with 162 additions and 10 deletions
2
setup.py
2
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']) )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue