| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | | Issue #18520: Add a new PyStructSequence_InitType2() function, same than | Victor Stinner | 2013-07-22 | 1 | -2/+3 |
|
|
* | | Issue #18408: Fix time.tzset(), detect exception when calling PyInit_timezone() | Victor Stinner | 2013-07-17 | 1 | -0/+2 |
|
|
* | | Fix time.mktime() and datetime.datetime.timestamp() on AIX | Victor Stinner | 2013-06-25 | 1 | -1/+10 |
|
|
* | | (Merge 3.3) Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 | Victor Stinner | 2013-06-25 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 | Victor Stinner | 2013-06-25 | 1 | -1/+1 |
|
|
* | | Merge. | Richard Oudkerk | 2013-04-17 | 1 | -1/+5 |
|\ \
| |/ |
|
| * | - Issue #17782: Fix undefined behaviour on platforms where ``struct timespec`... | Antoine Pitrou | 2013-04-17 | 1 | -1/+5 |
|
|
* | | Replace WaitForSingleObject with WaitForSingleObjectEx, | Martin v. Löwis | 2013-01-25 | 1 | -1/+1 |
|
|
* | | #16135: Removal of OS/2 support (Modules/*) | Jesus Cea | 2012-10-05 | 1 | -27/+0 |
|
|
* | | Issue #9650: List commonly used format codes in time.strftime and time.strpti... | Alexander Belopolsky | 2012-10-02 | 1 | -3/+25 |
|/ |
|
* | Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields | Alexander Belopolsky | 2012-06-14 | 1 | -2/+34 |
|
|
* | PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result | Victor Stinner | 2012-06-12 | 1 | -21/+15 |
|
|
* | time.get_clock_info() uses a namespace instead of structseq | Victor Stinner | 2012-06-12 | 1 | -37/+20 |
|
|
* | Fixed a typo in time_localtime() | Alexander Belopolsky | 2012-06-12 | 1 | -1/+1 |
|
|
* | strip is_ prefixes on clock_info fields | Benjamin Peterson | 2012-05-01 | 1 | -31/+31 |
|
|
* | Issue #14428, #14397: Implement the PEP 418 | Victor Stinner | 2012-04-29 | 1 | -89/+460 |
|
|
* | Fix clock_gettime/getres/settime: PyArg_ParseTuple() expects an int | Victor Stinner | 2012-04-13 | 1 | -10/+4 |
|
|
* | Expose clock_settime() as time.clock_settime() | Victor Stinner | 2012-04-02 | 1 | -0/+30 |
|
|
* | Add time.CLOCK_HIGHRES constant, needed on Solaris | Victor Stinner | 2012-04-02 | 1 | -0/+3 |
|
|
* | time.time() now uses clock_gettime(CLOCK_REALTIME) if available | Victor Stinner | 2012-03-28 | 1 | -0/+11 |
|
|
* | Document the fact that mach_timebase_info() cannot fail | Victor Stinner | 2012-03-28 | 1 | -4/+8 |
|
|
* | Fix time.steady(strict=True): don't use CLOCK_REALTIME | Victor Stinner | 2012-03-26 | 1 | -7/+28 |
|
|
* | Issue #14368: _PyTime_gettimeofday() cannot fail | Victor Stinner | 2012-03-26 | 1 | -7/+1 |
|
|
* | Issue #10278: Add an optional strict argument to time.steady(), False by default | Victor Stinner | 2012-03-15 | 1 | -17/+41 |
|
|
* | Issue #10278: Drop time.monotonic() function, rename time.wallclock() to time... | Victor Stinner | 2012-03-14 | 1 | -67/+15 |
|
|
* | Close #14180: Factorize code to convert a number of seconds to time_t, timeva... | Victor Stinner | 2012-03-13 | 1 | -6/+1 |
|
|
* | Issue #14104: Implement time.monotonic() on Mac OS X, | Victor Stinner | 2012-03-12 | 1 | -1/+17 |
|
|
* | Issue #14125: Fix refleak in timemodule.c on Windows. Thanks sbt for pointing | Stefan Krah | 2012-02-27 | 1 | -2/+3 |
|
|
* | Backout f8409b3d6449: the PEP 410 is not accepted yet | Victor Stinner | 2012-02-08 | 1 | -167/+74 |
|
|
* | PEP 410 | Victor Stinner | 2012-02-08 | 1 | -74/+167 |
|
|
* | Issue #13846: Add time.monotonic(), monotonic clock. | Victor Stinner | 2012-02-07 | 1 | -15/+67 |
|
|
* | Issue #13847: time.clock() now raises a RuntimeError if the processor time used | Victor Stinner | 2012-01-26 | 1 | -11/+27 |
|
|
* | Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead | Victor Stinner | 2012-01-26 | 1 | -52/+62 |
|
|
* | Merge | Antoine Pitrou | 2012-01-18 | 1 | -0/+47 |
|\ |
|
| * | Issue #10278: fix a typo in the doc | Victor Stinner | 2012-01-18 | 1 | -1/+1 |
|
|