summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_time.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-37552: Skip failing tests in strptime/strftime with UCRT version 17763.61...Miss Islington (bot)2019-07-181-0/+3
* bpo-36895: remove time.clock() as per removal notice. (GH-13270)Matthias Bussonnier2019-05-131-18/+1
* bpo-36454: Fix test_time.test_monotonic() (GH-12929)Victor Stinner2019-04-231-2/+3
* bpo-31904: Port the time module on VxWorks (GH-12305)pxinwr2019-04-151-1/+5
* bpo-34373: fix test_mktime and test_pthread_getcpuclickid tests on AIX (GH-8726)Michael Felt2018-12-281-8/+7
* bpo-33723: Remove busy loop from test_time (GH-10773)Victor Stinner2018-11-281-47/+0
* bpo-33723: Fix test_time.test_thread_time() (GH-10724)Victor Stinner2018-11-261-3/+7
* bpo-35202: Remove unused imports in tests. (GH-10561)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-161-1/+0
* closes bpo-34654: Tolerate + at the beginning of large years. (GH-9238)Benjamin Peterson2018-09-121-3/+3
* bpo-13312: Avoid int underflow in time year. (GH-8912)Gregory P. Smith2018-08-251-6/+5
* bpo-34179: Make sure decimal context doesn't affect other tests. (#8376)Bo Bayles2018-07-211-13/+13
* bpo-33723: Fix test_time.test_process_time() (GH-8358)Victor Stinner2018-07-211-4/+9
* bpo-33723: Fix test_time.test_thread_time() (GH-8267)Victor Stinner2018-07-121-4/+9
* bpo-32025: Add time.thread_time() (#4410)Antoine Pitrou2017-11-151-0/+57
* bpo-31784: Implement PEP 564: add time.time_ns() (#3989)Victor Stinner2017-11-021-1/+23
* time.clock() now emits a DeprecationWarning (GH-4020)Victor Stinner2017-10-171-10/+12
* bpo-31786: Make functions in the select module blocking when timeout is a sma...Pablo Galindo2017-10-171-0/+3
* weaken pthread_getcpuclockid test (more bpo-31596) (#3904)Benjamin Peterson2017-10-061-8/+1
* closes bpo-31596: Add an interface for pthread_getcpuclockid(3) (#3756)pdox2017-10-051-0/+20
* bpo-26669: Fix nan arg value error in pytime.c (#3085)Han Lee2017-09-081-0/+29
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-4/+0
* [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)Serhiy Storchaka2017-06-281-0/+4
* 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-081-135/+110
* Merge from 3.5Steve Dower2015-09-071-0/+13
|\
| * Issue #24917: time_strftime() buffer over-read.Steve Dower2015-09-071-0/+13
| * Backing out 09b62202d9b7; the tests fail on Linux, and it needs a re-think.Larry Hastings2015-09-061-6/+0
* | Issue #24917: Backed out changeset 09b62202d9b7Steve Dower2015-09-061-6/+0
|\ \
| * \ Issue #24917: Backed out changeset 09b62202d9b7Steve Dower2015-09-061-6/+0
| |\ \ | | |/ | |/|
* | | Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.Steve Dower2015-09-061-0/+6
|\ \ \ | |/ /
| * | 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-011-3/+61
|/ /
* | Closes #24244: Removes invalid test from test_timeSteve Dower2015-06-241-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-291-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