From a29d508ec4f29f73a9569e27402f159b8efa57ca Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 16 Dec 2002 20:31:57 +0000 Subject: Build the datetime module for *n*x. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index bc49d74..0768383 100644 --- a/setup.py +++ b/setup.py @@ -311,6 +311,8 @@ class PyBuildExt(build_ext): # time operations and variables exts.append( Extension('time', ['timemodule.c'], libraries=math_libs) ) + exts.append( Extension('datetime', ['datetimemodule.c'], + libraries=math_libs) ) # operator.add() and similar goodies exts.append( Extension('operator', ['operator.c']) ) # Python C API test module -- cgit v0.12