diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-12-16 20:13:40 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-12-16 20:13:40 (GMT) |
commit | 9cae178f21745eaa2cbefb74b925bea1322a2baa (patch) | |
tree | 6d3c591dad0aee22b562b89635ab759efd708e0b /PC | |
parent | 98e3df38fd863af8f399739e461f84058e7bcfe0 (diff) | |
download | cpython-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 'PC')
-rw-r--r-- | PC/VC6/pythoncore.dsp | 4 | ||||
-rw-r--r-- | PC/VS7.1/pythoncore.vcproj | 3 | ||||
-rw-r--r-- | PC/VS8.0/pythoncore.vcproj | 8 |
3 files changed, 15 insertions, 0 deletions
diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp index 391510b..28ff8c8 100644 --- a/PC/VC6/pythoncore.dsp +++ b/PC/VC6/pythoncore.dsp @@ -161,6 +161,10 @@ SOURCE=..\..\Modules\_lsprof.c # End Source File
# Begin Source File
+SOURCE=..\..\Modules\_math.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Modules\_randommodule.c
# End Source File
# Begin Source File
diff --git a/PC/VS7.1/pythoncore.vcproj b/PC/VS7.1/pythoncore.vcproj index c24332f..98c260f 100644 --- a/PC/VS7.1/pythoncore.vcproj +++ b/PC/VS7.1/pythoncore.vcproj @@ -389,6 +389,9 @@ RelativePath="..\..\Modules\_lsprof.c"> </File> <File + RelativePath="..\..\Modules\_math.c"> + </File> + <File RelativePath="..\..\Modules\_randommodule.c"> </File> <File diff --git a/PC/VS8.0/pythoncore.vcproj b/PC/VS8.0/pythoncore.vcproj index bc249bc..ad48cee 100644 --- a/PC/VS8.0/pythoncore.vcproj +++ b/PC/VS8.0/pythoncore.vcproj @@ -1027,6 +1027,14 @@ > </File> <File + RelativePath="..\..\Modules\_math.c" + > + </File> + <File + RelativePath="..\..\Modules\_math.h" + > + </File> + <File RelativePath="..\..\Modules\_randommodule.c" > </File> |