mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec
time.ctime(), gmtime(), time.localtime(), datetime.date.fromtimestamp(), datetime.datetime.fromtimestamp() and datetime.datetime.utcfromtimestamp() now raises an OverflowError, instead of a ValueError, if the timestamp does not fit in time_t. datetime.datetime.fromtimestamp() and datetime.datetime.utcfromtimestamp() now round microseconds towards zero instead of rounding to nearest with ties going away from zero.
This commit is contained in:
parent
3cac309939
commit
5d272cc6a2
16 changed files with 278 additions and 222 deletions
4
setup.py
4
setup.py
|
@ -512,9 +512,9 @@ class PyBuildExt(build_ext):
|
|||
time_libs.append(lib)
|
||||
|
||||
# time operations and variables
|
||||
exts.append( Extension('time', ['timemodule.c', '_time.c'],
|
||||
exts.append( Extension('time', ['timemodule.c'],
|
||||
libraries=time_libs) )
|
||||
exts.append( Extension('_datetime', ['_datetimemodule.c', '_time.c']) )
|
||||
exts.append( Extension('_datetime', ['_datetimemodule.c']) )
|
||||
# random number generator implemented in C
|
||||
exts.append( Extension("_random", ["_randommodule.c"]) )
|
||||
# bisect
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue