summaryrefslogtreecommitdiff
path: root/Lib/test/test_time.py
Commit message (Expand)AuthorAgeFilesLines
* Fix typo in test_time.pyVictor Stinner2016-08-171-1/+1
* pytime: add _PyTime_check_mul_overflow() macro to avoid undefined behaviourVictor Stinner2015-09-101-1/+2
* Fix test_time on platform with 32-bit time_t typeVictor Stinner2015-09-101-3/+6
* Fix test_time on platform with 32-bit time_t typeVictor Stinner2015-09-101-5/+18
* Fix test_time on WindowsVictor Stinner2015-09-101-9/+24
* test_time: rewrite PyTime API rounding testsVictor Stinner2015-09-091-562/+234
* Issue #23517: fromtimestamp() and utcfromtimestamp() methods ofVictor Stinner2015-09-091-135/+110
* Merge from 3.5Steve Dower2015-09-061-44/+329
|\
| * Issue #24917: Backed out changeset 09b62202d9b7Steve Dower2015-09-051-44/+329
| |\
| | * Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.Steve Dower2015-09-051-0/+6
| | |\
| | * | Issue #23517: Fix implementation of the ROUND_HALF_UP rounding mode inVictor Stinner2015-09-041-6/+7
| | * | test_time: add tests on HALF_UP rounding mode for _PyTime_ObjectToTime_t() andVictor Stinner2015-09-041-40/+90
| | * | Issue #23517: test_time, skip a test checking a corner case on floating pointVictor Stinner2015-09-021-1/+3
| | * | test_time: add more tests on HALF_UP rounding modeVictor Stinner2015-09-021-8/+28
| | * | Issue #23517: Reintroduce unit tests for the old PyTime API since it's stillVictor Stinner2015-09-021-0/+154
| | * | Issue #23517: Add "half up" rounding mode to the _PyTime APIVictor Stinner2015-09-021-3/+61
| * | | Issue #24917: Backed out changeset 09b62202d9b7Steve Dower2015-09-051-104/+328
| |\ \ \ | | | |/ | | |/|
* | | | Issue #24917: time_strftime() buffer over-read.Steve Dower2015-09-061-0/+13
* | | | Backing out 09b62202d9b7; the tests fail on Linux, and it needs a re-think.Larry Hastings2015-09-061-6/+0
| |/ / |/| |
* | | Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.Steve Dower2015-09-051-0/+6
| |/ |/|
* | Closes #24244: Removes invalid test from test_timeSteve Dower2015-06-231-7/+0
* | Issue #22117: Add a new _PyTime_FromSeconds() functionVictor Stinner2015-04-031-0/+7
* | Issue #22117, issue #23485: Fix _PyTime_AsMilliseconds() andVictor Stinner2015-04-011-4/+72
* | Issue #22117: Remove _PyTime_ROUND_DOWN and _PyTime_ROUND_UP rounding methodsVictor Stinner2015-03-301-87/+13
* | Issue #22117: Add _PyTime_ROUND_CEILING rounding method for timestampsVictor Stinner2015-03-301-4/+61
* | Issue #22117: Fix rounding and implement _PyTime_ROUND_FLOOR in:Victor Stinner2015-03-301-2/+2
* | Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetimeVictor Stinner2015-03-281-48/+18
* | Issue #22117: Write unit tests for _PyTime_AsTimeval()Victor Stinner2015-03-281-0/+38
* | Issue #22117: The signal modules uses the new _PyTime_t APIVictor Stinner2015-03-271-1/+28
* | Issue #22117: time.monotonic() now uses the new _PyTime_t APIVictor Stinner2015-03-271-10/+54
* | Issue #22117: Fix rounding in _PyTime_FromSecondsObject()Victor Stinner2015-03-271-79/+173
|/
* Issue #11188, #19748: mktime() returns -1 on error. On Linux, the tm_wday fieldVictor Stinner2014-02-211-0/+7
* Issue #19748: On AIX, time.mktime() now raises an OverflowError for yearVictor Stinner2014-02-211-1/+1
* Issue #20320: select.select() and select.kqueue.control() now round the timeoutVictor Stinner2014-02-171-35/+95
* Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-0/+9
|\
| * Issue #20101: Merge with 3.3Zachary Ware2014-01-021-0/+9
| |\
| | * (Merge 3.3) Close #19999: tolerate coarse time when testing time.monotonic() onVictor Stinner2013-12-161-0/+9
| | |\
| | | * Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-0/+9
| | | |\
| | | | * Issue #19545: Avoid chained exceptions while passing stray % toSerhiy Storchaka2013-11-241-0/+9
| | | | |\
| | | | | * Issue #19715: Ensure that consecutive calls to monotonic() are monotonicVictor Stinner2013-11-231-0/+9
* | | | | | Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-0/+3
|/ / / / /
* | | | | Issue #20101: Allow test_monotonic to pass on Windows machines on whichZachary Ware2014-01-021-1/+2
|/ / / /
* | | | Close #19999: tolerate coarse time when testing time.monotonic() on veryVictor Stinner2013-12-161-1/+1
|/ / /
* | | Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-2/+1
|/ /
* | Issue #19545: Avoid chained exceptions while passing stray % toSerhiy Storchaka2013-11-241-0/+4
|/
* test_time.test_monotonic(): use a longer sleep to try to make the test more r...Victor Stinner2013-07-031-2/+2
* #17690: test_time now works with unittest test discovery. Patch by Zachary W...Ezio Melotti2013-04-111-15/+4
* #17572: Avoid chained exceptions while passing bad directives to time.strptim...Ezio Melotti2013-04-041-0/+6
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-106/+380
|\
| * Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fieldsAlexander Belopolsky2012-06-131-1/+52