summaryrefslogtreecommitdiffstats
path: root/Modules/_time.c
Commit message (Collapse)AuthorAgeFilesLines
* Close #14180: Factorize code to convert a number of seconds to time_t, ↵Victor Stinner2012-03-131-28/+0
| | | | | | | | | | | | | 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.
* Fixed a typo in a comment.Alexander Belopolsky2010-06-181-1/+1
|
* Issue #9012: "Separate compilation of time and datetime modules."Alexander Belopolsky2010-06-161-0/+28
Segregated code shared between time and datetime modules into Modules/_time.c. Added a new header file, Modules/_time.h, which will be used instead of Include/timefuncs.h for declarations shared between time and datetime modules.