index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
timemodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-37205: time.time() cannot fail with fatal error (GH-23314)
Victor Stinner
2020-11-16
1
-22/+65
*
bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)
Ronald Oussoren
2020-11-08
1
-52/+162
*
bpo-35455: Fix thread_time for Solaris OS (GH-11118)
Jakub Kulík
2020-11-02
1
-0/+17
*
bpo-40192: Use thread_cputime for time.thread_time to improve resolution (GH-...
Batuhan Taskaya
2020-05-16
1
-0/+28
*
bpo-40268: Remove explicit pythread.h includes (#19529)
Victor Stinner
2020-04-15
1
-6/+5
*
closes bpo-40017: Add CLOCK_TAI constant to the time module. (GH-19096)
Russell Owen
2020-03-24
1
-0/+5
*
bpo-1635741: Port time module to multiphase initialization (PEP 489) (GH-19107)
Paulo Henrique Silva
2020-03-23
1
-51/+52
*
bpo-1635741: Fix refleaks of time module error handling (GH-18486)
Hai Shi
2020-03-11
1
-18/+45
*
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
Dong-hee Na
2020-02-17
1
-1/+1
*
bpo-36205: Fix the rusage implementation of time.process_time() (GH-15538)
vrajivk
2019-08-27
1
-1/+1
*
bpo-36779: time.tzname returns empty string on Windows if default cod… (GH-...
Paul Monson
2019-06-12
1
-0/+14
*
bpo-36895: remove time.clock() as per removal notice. (GH-13270)
Matthias Bussonnier
2019-05-13
1
-50/+0
*
bpo-31904: Port the time module on VxWorks (GH-12305)
pxinwr
2019-04-15
1
-4/+7
*
bpo-34373: Fix time.mktime() on AIX (GH-12726)
Victor Stinner
2019-04-09
1
-29/+37
*
bpo-24643: Fix "#define timezone _timezone" clashes on Windows (GH-12019)
Zackery Spytz
2019-02-25
1
-5/+15
*
bpo-35702: Add new identifier time.CLOCK_UPTIME_RAW for macOS 10.12 (GH-11503)
Joannah Nanjekye
2019-01-10
1
-0/+3
*
bpo-35550: Fix incorrect Solaris define guards (GH-11275)
Jakub Kulík
2018-12-31
1
-2/+2
*
bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-11375)
Gregory P. Smith
2018-12-31
1
-0/+7
*
bpo-34373: fix test_mktime and test_pthread_getcpuclickid tests on AIX (GH-8726)
Michael Felt
2018-12-28
1
-12/+33
*
bpo-35373: Fix PyInit_time() error handling (GH-10865)
Victor Stinner
2018-12-03
1
-4/+7
*
bpo-35373: Fix PyInit_timezone() if HAVE_DECL_TZNAME is defined (GH-10861)
Victor Stinner
2018-12-03
1
-4/+5
*
get_gmtoff() now returns time_t (GH-10838)
Victor Stinner
2018-11-30
1
-11/+36
*
bpo-35337: Fix gettmarg(): use PyStructSequence_GET_ITEM() (GH-10765)
Victor Stinner
2018-11-28
1
-2/+2
*
bpo-34672: fix a compiler warning in timemodule.c (GH-10176)
Xiang Zhang
2018-10-28
1
-1/+1
*
closes bpo-35025: Properly guard the `CLOCK_GETTIME` et al macros in timemodu...
Max Bélanger
2018-10-21
1
-0/+4
*
bpo-34735: Fix a memory leak in Modules/timemodule.c (GH-9418)
Zackery Spytz
2018-09-21
1
-0/+1
*
Simplify PyInit_timezone. (GH-9467)
Benjamin Peterson
2018-09-21
1
-50/+48
*
bpo-34715: Revert "Simplify PyInit_timezone. (GH-9323)" (GH-9366)
Victor Stinner
2018-09-17
1
-15/+68
*
Simplify PyInit_timezone. (GH-9323)
Benjamin Peterson
2018-09-14
1
-68/+15
*
bpo-34672: Don't pass NULL to gmtime_r. (GH-9312)
Benjamin Peterson
2018-09-14
1
-1/+2
*
bpo-34672: Try to pass the C library's own timezone strings back to it. (GH-9...
Benjamin Peterson
2018-09-14
1
-4/+36
*
bpo-13312: Avoid int underflow in time year. (GH-8912)
Gregory P. Smith
2018-08-25
1
-0/+6
*
Fix some warnings produced by different compilers. (#5593)
Serhiy Storchaka
2018-02-09
1
-0/+2
*
bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)
Victor Stinner
2018-01-15
1
-6/+5
*
bpo-29240: Ignore UTF-8 Mode in time module (#5148)
Victor Stinner
2018-01-11
1
-6/+6
*
bpo-32025: Add time.thread_time() (#4410)
Antoine Pitrou
2017-11-15
1
-0/+117
*
bpo-31784: Implement PEP 564: add time.time_ns() (#3989)
Victor Stinner
2017-11-02
1
-117/+309
*
bpo-31917: Add 3 new clock identifiers (#4207)
Victor Stinner
2017-11-02
1
-0/+9
*
bpo-31806: Use _PyTime_ROUND_TIMEOUT for the timeout argument parsing in more...
Pablo Galindo
2017-10-18
1
-1/+1
*
time.clock() now emits a DeprecationWarning (GH-4020)
Victor Stinner
2017-10-17
1
-0/+7
*
bpo-31773: _PyTime_GetPerfCounter() uses _PyTime_t (GH-3983)
Victor Stinner
2017-10-16
1
-3/+4
*
bpo-31773: time.perf_counter() uses again double (GH-3964)
Victor Stinner
2017-10-12
1
-17/+11
*
bpo-28157: Improvements for the time module documentation (GH-928)
Cheryl Sabella
2017-10-11
1
-22/+1
*
bpo-31415: Add _PyTime_GetPerfCounter() and use it for -X importtime (#3936)
Victor Stinner
2017-10-10
1
-48/+23
*
closes bpo-31596: Add an interface for pthread_getcpuclockid(3) (#3756)
pdox
2017-10-05
1
-0/+32
*
bpo-28261: Fixed err msgs where PyArg_ParseTuple is used to parse normal tupl...
Oren Milman
2017-08-20
1
-6/+17
*
timemodule.c: Cast PyUnicode_AsUTF8() to char* (#1294)
Victor Stinner
2017-04-26
1
-1/+1
*
tmtotuple(): use time_t for gmtoff (#1276)
Victor Stinner
2017-04-24
1
-3/+3
*
Only define get_zone() and get_gmtoff() if needed (#1193)
Victor Stinner
2017-04-20
1
-0/+2
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-4/+2
[next]