Commit 057e7200 authored by Brett Cannon's avatar Brett Cannon

Add compilation of timemodule.c with datetimemodule.c to get

__PyTime_DoubleToTimet().
parent 6cc48148
......@@ -315,7 +315,7 @@ class PyBuildExt(build_ext):
# time operations and variables
exts.append( Extension('time', ['timemodule.c'],
libraries=math_libs) )
exts.append( Extension('datetime', ['datetimemodule.c'],
exts.append( Extension('datetime', ['datetimemodule.c', 'timemodule.c'],
libraries=math_libs) )
# random number generator implemented in C
exts.append( Extension("_random", ["_randommodule.c"]) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment