commit | a29d508ec4f29f73a9569e27402f159b8efa57ca | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Dec 16 20:31:57 2002 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Dec 16 20:31:57 2002 +0000 |
tree | 643c44ca49b5ecd13c7842056bc449ba8f12ad08 | |
parent | 2a799bf77a83adef010ff4751e5195702f159f39 [diff] |
Build the datetime module for *n*x.
diff --git a/setup.py b/setup.py index bc49d74..0768383 100644 --- a/setup.py +++ b/setup.py
@@ -311,6 +311,8 @@ # 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