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
*
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
*
Fixes maximum usable length of buffer for formatting time zone in localtime().
Steve Dower
2016-12-14
1
-1/+1
|
\
|
*
Fixes maximum usable length of buffer for formatting time zone in localtime().
Steve Dower
2016-12-14
1
-1/+1
*
|
time_strptime() uses PyObject_Call()
Victor Stinner
2016-12-08
1
-7/+13
|
/
*
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
Serhiy Storchaka
2016-11-20
1
-1/+1
*
Issue #28148: Stop using localtime() and gmtime() in the time module.
Alexander Belopolsky
2016-09-28
1
-41/+14
*
more granular configure checks for clock_* functions (closes #28081)
Benjamin Peterson
2016-09-14
1
-3/+11
*
Closes #25283: Make tm_gmtoff and tm_zone available on all platforms.
Alexander Belopolsky
2016-09-12
1
-33/+81
*
Issue #22624: Python 3 requires clock() to build
Victor Stinner
2016-07-08
1
-0/+1
*
Issue #25923: Added more const qualifiers to signatures of static and private...
Serhiy Storchaka
2015-12-25
1
-1/+1
*
Issue #25923: Added the const qualifier to static constant arrays.
Serhiy Storchaka
2015-12-25
1
-2/+2
*
Issue #25092: Fix datetime.strftime() failure when errno was already set to E...
Steve Dower
2015-09-22
1
-0/+3
*
Issue #25029: MemoryError in test_strptime
Steve Dower
2015-09-09
1
-13/+7
*
Issue #24917: time_strftime() buffer over-read.
Steve Dower
2015-09-07
1
-6/+10
*
Backing out 09b62202d9b7; the tests fail on Linux, and it needs a re-think.
Larry Hastings
2015-09-06
1
-12/+0
*
Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.
Steve Dower
2015-09-05
1
-0/+12
*
Issue 24244: Prevents termination when an invalid format string is encountere...
Steve Dower
2015-05-22
1
-7/+2
*
PEP 475: on EINTR, retry the function even if the timeout is equals to zero
Victor Stinner
2015-03-30
1
-1/+1
*
Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING
Victor Stinner
2015-03-30
1
-3/+3
*
Issue #22117: Fix usage of _PyTime_AsTimeval()
Victor Stinner
2015-03-30
1
-4/+1
*
Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetime
Victor Stinner
2015-03-28
1
-2/+2
*
Issue #22117: Use the _PyTime_t API for time.clock_settime()
Victor Stinner
2015-03-28
1
-5/+5
*
Issue #22117: Write unit tests for _PyTime_AsTimeval()
Victor Stinner
2015-03-28
1
-1/+4
*
Issue #22117: time.time() now uses the new _PyTime_t API
Victor Stinner
2015-03-27
1
-3/+5
*
Issue #22117: time.monotonic() now uses the new _PyTime_t API
Victor Stinner
2015-03-27
1
-3/+5
*
Issue #22117: Fix rounding in _PyTime_FromSecondsObject()
Victor Stinner
2015-03-27
1
-1/+1
*
Issue #22117: Add a new Python timestamp format _PyTime_t to pytime.h
Victor Stinner
2015-03-27
1
-21/+17
*
Issue #23646: Fix test_threading on Windows
Victor Stinner
2015-03-20
1
-1/+1
*
Issue #23646: Enhance precision of time.sleep() and socket timeout when
Victor Stinner
2015-03-20
1
-2/+2
*
Issue #23646: If time.sleep() is interrupted by a signal, the sleep is now
Victor Stinner
2015-03-19
1
-51/+56
*
Revert changeset d927047b1d8eb87738676980a24930d053ba2150
Victor Stinner
2015-03-17
1
-69/+49
*
test
Victor Stinner
2015-03-12
1
-49/+69
*
Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ...
Steve Dower
2014-11-22
1
-13/+0
*
Issue #22592: Drop support of the Borland C compiler to build Python
Victor Stinner
2014-10-22
1
-9/+2
*
Issue #22043: time.monotonic() is now always available
Victor Stinner
2014-09-02
1
-135/+6
*
Issue #22043: Oops, fix perf_counter() on UNIX if no monotonic clock is
Victor Stinner
2014-08-29
1
-2/+1
*
Issue #22043: Simplify time.perf_counter() on Windows
Victor Stinner
2014-08-29
1
-30/+16
*
Issue #22043: _PyTime_Init() now checks if the system clock works.
Victor Stinner
2014-08-29
1
-1/+4
*
Issue #22287: On UNIX, _PyTime_gettimeofday() now uses
Victor Stinner
2014-08-29
1
-22/+0
*
timemodule.c: Replace PyExc_IOError with PyExc_OSError
Victor Stinner
2014-07-31
1
-5/+5
*
Issue #19748: On AIX, time.mktime() now raises an OverflowError for year
Victor Stinner
2014-02-21
1
-0/+11
*
Issue #20320: select.select() and select.kqueue.control() now round the timeout
Victor Stinner
2014-02-16
1
-2/+2
*
Issue #19634: time.strftime("%y") now raises a ValueError on Solaris when given
Victor Stinner
2013-11-23
1
-1/+1
*
Issue #19634: Fix time_strftime() on AIX, format is a wchar_t* not a PyObject*
Victor Stinner
2013-11-18
1
-2/+1
*
Issue #19634: time.strftime("%y") now raises a ValueError on AIX when given a
Victor Stinner
2013-11-17
1
-0/+14
*
Issue13674 Correct crash with strftime %y format under Windows
Tim Golden
2013-11-12
1
-0/+7
|
\
|
*
Issue13674 Correct crash with strftime %y format under Windows
Tim Golden
2013-11-12
1
-0/+7
[next]