From: Guido van Rossum Date: Mon, 16 Dec 2002 20:31:57 +0000 (+0000) Subject: Build the datetime module for *n*x. X-Git-Tag: v2.3c1~2993 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a29d508ec4f29f73a9569e27402f159b8efa57ca;p=python Build the datetime module for *n*x. --- diff --git a/setup.py b/setup.py index bc49d74326..0768383059 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