aboutsummaryrefslogtreecommitdiff
path: root/Modules/timemodule.c
AgeCommit message (Expand)Author
2018-02-09Fix some warnings produced by different compilers. (#5593)Serhiy Storchaka
2018-01-15bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)Victor Stinner
2018-01-11bpo-29240: Ignore UTF-8 Mode in time module (#5148)Victor Stinner
2017-11-15bpo-32025: Add time.thread_time() (#4410)Antoine Pitrou
2017-11-02bpo-31784: Implement PEP 564: add time.time_ns() (#3989)Victor Stinner
2017-11-02bpo-31917: Add 3 new clock identifiers (#4207)Victor Stinner
2017-10-18bpo-31806: Use _PyTime_ROUND_TIMEOUT for the timeout argument parsing in more...Pablo Galindo
2017-10-17time.clock() now emits a DeprecationWarning (GH-4020)Victor Stinner
2017-10-16bpo-31773: _PyTime_GetPerfCounter() uses _PyTime_t (GH-3983)Victor Stinner
2017-10-12bpo-31773: time.perf_counter() uses again double (GH-3964)Victor Stinner
2017-10-11bpo-28157: Improvements for the time module documentation (GH-928)Cheryl Sabella
2017-10-10bpo-31415: Add _PyTime_GetPerfCounter() and use it for -X importtime (#3936)Victor Stinner
2017-10-05closes bpo-31596: Add an interface for pthread_getcpuclockid(3) (#3756)pdox
2017-08-20bpo-28261: Fixed err msgs where PyArg_ParseTuple is used to parse normal tupl...Oren Milman
2017-04-26timemodule.c: Cast PyUnicode_AsUTF8() to char* (#1294)Victor Stinner
2017-04-25tmtotuple(): use time_t for gmtoff (#1276)Victor Stinner
2017-04-20Only define get_zone() and get_gmtoff() if needed (#1193)Victor Stinner
2017-01-23Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka
2016-12-14Fixes maximum usable length of buffer for formatting time zone in localtime().Steve Dower
2016-12-14Fixes maximum usable length of buffer for formatting time zone in localtime().Steve Dower
2016-12-09time_strptime() uses PyObject_Call()Victor Stinner
2016-11-20Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka
2016-09-28Issue #28148: Stop using localtime() and gmtime() in the time module.Alexander Belopolsky
2016-09-13more granular configure checks for clock_* functions (closes #28081)Benjamin Peterson
2016-09-11Closes #25283: Make tm_gmtoff and tm_zone available on all platforms.Alexander Belopolsky
2016-07-08Issue #22624: Python 3 requires clock() to buildVictor Stinner
2015-12-25Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka
2015-12-25Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka
2015-09-22Issue #25092: Fix datetime.strftime() failure when errno was already set to E...Steve Dower
2015-09-08Issue #25029: MemoryError in test_strptimeSteve Dower
2015-09-06Issue #24917: time_strftime() buffer over-read.Steve Dower
2015-09-06Backing out 09b62202d9b7; the tests fail on Linux, and it needs a re-think.Larry Hastings
2015-09-05Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.Steve Dower
2015-05-22Issue 24244: Prevents termination when an invalid format string is encountere...Steve Dower
2015-03-30PEP 475: on EINTR, retry the function even if the timeout is equals to zeroVictor Stinner
2015-03-30Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILINGVictor Stinner
2015-03-30Issue #22117: Fix usage of _PyTime_AsTimeval()Victor Stinner
2015-03-28Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetimeVictor Stinner
2015-03-28Issue #22117: Use the _PyTime_t API for time.clock_settime()Victor Stinner
2015-03-28Issue #22117: Write unit tests for _PyTime_AsTimeval()Victor Stinner
2015-03-27Issue #22117: time.time() now uses the new _PyTime_t APIVictor Stinner
2015-03-27Issue #22117: time.monotonic() now uses the new _PyTime_t APIVictor Stinner
2015-03-27Issue #22117: Fix rounding in _PyTime_FromSecondsObject()Victor Stinner
2015-03-27Issue #22117: Add a new Python timestamp format _PyTime_t to pytime.hVictor Stinner
2015-03-20Issue #23646: Fix test_threading on WindowsVictor Stinner
2015-03-20Issue #23646: Enhance precision of time.sleep() and socket timeout whenVictor Stinner
2015-03-19Issue #23646: If time.sleep() is interrupted by a signal, the sleep is nowVictor Stinner
2015-03-17Revert changeset d927047b1d8eb87738676980a24930d053ba2150Victor Stinner
2015-03-12testVictor Stinner
2014-11-22Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ...Steve Dower