mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Issue #7989: Added pure python implementation of the datetime module.
This commit is contained in:
parent
c2721b0cd0
commit
cf86e368eb
9 changed files with 5813 additions and 3670 deletions
2
setup.py
2
setup.py
|
@ -452,7 +452,7 @@ class PyBuildExt(build_ext):
|
|||
# time operations and variables
|
||||
exts.append( Extension('time', ['timemodule.c', '_time.c'],
|
||||
libraries=math_libs) )
|
||||
exts.append( Extension('datetime', ['datetimemodule.c', '_time.c'],
|
||||
exts.append( Extension('_datetime', ['_datetimemodule.c', '_time.c'],
|
||||
libraries=math_libs) )
|
||||
# fast iterator tools implemented in C
|
||||
exts.append( Extension("itertools", ["itertoolsmodule.c"]) )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue