summaryrefslogtreecommitdiff
path: root/Modules/timemodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-36779: time.tzname returns empty string on Windows if default cod… (GH-...Miss Islington (bot)2019-06-131-0/+14
* bpo-24643: Fix "GH-define timezone _timezone" clashes on Windows (GH-12019)Miss Islington (bot)2019-02-251-5/+15
* bpo-35550: Fix incorrect Solaris define guards (GH-11275)Miss Islington (bot)2018-12-301-2/+2
* bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-1137...Miss Islington (bot)2018-12-301-0/+7
* [3.7] bpo-35373: Fix PyInit_timezone() error handling (GH-10864)Victor Stinner2018-12-041-5/+24
* get_gmtoff() now returns time_t (GH-10838) (GH-10839)Victor Stinner2018-12-011-9/+29
* closes bpo-35025: Properly guard the `CLOCK_GETTIME` et al macros in timemodu...Miss Islington (bot)2018-10-201-0/+4
* bpo-34735: Fix a memory leak in Modules/timemodule.c (GH-9418)Miss Islington (bot)2018-09-211-0/+1
* bpo-13312: Avoid int underflow in time year. (GH-8912)Miss Islington (bot)2018-08-251-0/+6
* Fix some warnings produced by different compilers. (GH-5593) (GH-5600)Miss Islington (bot)2018-02-091-0/+2
* bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)Victor Stinner2018-01-151-6/+5
* bpo-29240: Ignore UTF-8 Mode in time module (#5148)Victor Stinner2018-01-111-6/+6
* bpo-32025: Add time.thread_time() (#4410)Antoine Pitrou2017-11-151-0/+117
* bpo-31784: Implement PEP 564: add time.time_ns() (#3989)Victor Stinner2017-11-021-117/+309
* bpo-31917: Add 3 new clock identifiers (#4207)Victor Stinner2017-11-021-0/+9
* bpo-31806: Use _PyTime_ROUND_TIMEOUT for the timeout argument parsing in more...Pablo Galindo2017-10-181-1/+1
* time.clock() now emits a DeprecationWarning (GH-4020)Victor Stinner2017-10-171-0/+7
* bpo-31773: _PyTime_GetPerfCounter() uses _PyTime_t (GH-3983)Victor Stinner2017-10-161-3/+4
* bpo-31773: time.perf_counter() uses again double (GH-3964)Victor Stinner2017-10-121-17/+11
* bpo-28157: Improvements for the time module documentation (GH-928)Cheryl Sabella2017-10-111-22/+1
* bpo-31415: Add _PyTime_GetPerfCounter() and use it for -X importtime (#3936)Victor Stinner2017-10-101-48/+23
* closes bpo-31596: Add an interface for pthread_getcpuclockid(3) (#3756)pdox2017-10-051-0/+32
* bpo-28261: Fixed err msgs where PyArg_ParseTuple is used to parse normal tupl...Oren Milman2017-08-201-6/+17
* timemodule.c: Cast PyUnicode_AsUTF8() to char* (#1294)Victor Stinner2017-04-261-1/+1
* tmtotuple(): use time_t for gmtoff (#1276)Victor Stinner2017-04-251-3/+3
* Only define get_zone() and get_gmtoff() if needed (#1193)Victor Stinner2017-04-201-0/+2
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-4/+2
* Fixes maximum usable length of buffer for formatting time zone in localtime().Steve Dower2016-12-141-1/+1
|\
| * Fixes maximum usable length of buffer for formatting time zone in localtime().Steve Dower2016-12-141-1/+1
* | time_strptime() uses PyObject_Call()Victor Stinner2016-12-091-7/+13
|/
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-1/+1
* Issue #28148: Stop using localtime() and gmtime() in the time module.Alexander Belopolsky2016-09-281-41/+14
* more granular configure checks for clock_* functions (closes #28081)Benjamin Peterson2016-09-131-3/+11
* Closes #25283: Make tm_gmtoff and tm_zone available on all platforms.Alexander Belopolsky2016-09-111-33/+81
* Issue #22624: Python 3 requires clock() to buildVictor Stinner2016-07-081-0/+1
* Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-1/+1
* Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-2/+2
* Issue #25092: Fix datetime.strftime() failure when errno was already set to E...Steve Dower2015-09-221-0/+3
* Issue #25029: MemoryError in test_strptimeSteve Dower2015-09-081-13/+7
* Issue #24917: time_strftime() buffer over-read.Steve Dower2015-09-061-6/+10
* Backing out 09b62202d9b7; the tests fail on Linux, and it needs a re-think.Larry Hastings2015-09-061-12/+0
* Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.Steve Dower2015-09-051-0/+12
* Issue 24244: Prevents termination when an invalid format string is encountere...Steve Dower2015-05-221-7/+2
* PEP 475: on EINTR, retry the function even if the timeout is equals to zeroVictor Stinner2015-03-301-1/+1
* Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILINGVictor Stinner2015-03-301-3/+3
* Issue #22117: Fix usage of _PyTime_AsTimeval()Victor Stinner2015-03-301-4/+1
* Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetimeVictor Stinner2015-03-281-2/+2
* Issue #22117: Use the _PyTime_t API for time.clock_settime()Victor Stinner2015-03-281-5/+5
* Issue #22117: Write unit tests for _PyTime_AsTimeval()Victor Stinner2015-03-281-1/+4
* Issue #22117: time.time() now uses the new _PyTime_t APIVictor Stinner2015-03-271-3/+5