diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-12-21 15:27:41 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-12-21 15:27:41 (GMT) |
commit | f371859a4f0705062e94798e21ebe3705d891a37 (patch) | |
tree | c4b520a35156bd0d6729980b1253a4ce04bf39c3 /Modules/Setup.dist | |
parent | 0f72d6c25fb3ff16b4c459221d56f87f221c59d0 (diff) | |
download | cpython-f371859a4f0705062e94798e21ebe3705d891a37.zip cpython-f371859a4f0705062e94798e21ebe3705d891a37.tar.gz cpython-f371859a4f0705062e94798e21ebe3705d891a37.tar.bz2 |
Merged revisions 76978 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76978 | mark.dickinson | 2009-12-21 15:22:00 +0000 (Mon, 21 Dec 2009) | 3 lines
Issue #7518: Move substitute definitions of C99 math functions from
pymath.c to Modules/_math.c.
........
Diffstat (limited to 'Modules/Setup.dist')
-rw-r--r-- | Modules/Setup.dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Setup.dist b/Modules/Setup.dist index e1cb235..45bf531 100644 --- a/Modules/Setup.dist +++ b/Modules/Setup.dist @@ -157,7 +157,7 @@ _symtable symtablemodule.c # Modules that should always be present (non UNIX dependent): #array arraymodule.c # array objects -#cmath cmathmodule.c # -lm # complex math library functions +#cmath cmathmodule.c _math.c # -lm # complex math library functions #math mathmodule.c _math.c # -lm # math library functions, e.g. sin() #_struct _struct.c # binary structure packing/unpacking #time timemodule.c # -lm # time operations and variables |