- ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
- 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
- 57ab1cd Issue #25092: Fix datetime.strftime() failure when errno was already set to EINVAL. by Steve Dower · 9 years ago
- 97cded9 Issue #25029: MemoryError in test_strptime by Steve Dower · 9 years ago
- e5b5895 Issue #24917: time_strftime() buffer over-read. by Steve Dower · 9 years ago
- 62b2462 Backing out 09b62202d9b7; the tests fail on Linux, and it needs a re-think. by Larry Hastings · 9 years ago
- 373602f Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch. by Steve Dower · 9 years ago
- d9ef74e Issue 24244: Prevents termination when an invalid format string is encountered on Windows. by Steve Dower · 10 years ago
- 6aa446c PEP 475: on EINTR, retry the function even if the timeout is equals to zero by Victor Stinner · 10 years ago
- 869e177 Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING by Victor Stinner · 10 years ago
- ea9c0dd Issue #22117: Fix usage of _PyTime_AsTimeval() by Victor Stinner · 10 years ago
- 02937aa Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetime by Victor Stinner · 10 years ago
- b3b4544 Issue #22117: Use the _PyTime_t API for time.clock_settime() by Victor Stinner · 10 years ago
- 95e9cef Issue #22117: Write unit tests for _PyTime_AsTimeval() by Victor Stinner · 10 years ago
- a47b881 Issue #22117: time.time() now uses the new _PyTime_t API by Victor Stinner · 10 years ago
- 4bfb460 Issue #22117: time.monotonic() now uses the new _PyTime_t API by Victor Stinner · 10 years ago
- 992c43f Issue #22117: Fix rounding in _PyTime_FromSecondsObject() by Victor Stinner · 10 years ago
- cb29f01 Issue #22117: Add a new Python timestamp format _PyTime_t to pytime.h by Victor Stinner · 10 years ago
- 0eac130 Issue #23646: Fix test_threading on Windows by Victor Stinner · 10 years ago
- 9a8089b Issue #23646: Enhance precision of time.sleep() and socket timeout when by Victor Stinner · 10 years ago
- 79d68f9 Issue #23646: If time.sleep() is interrupted by a signal, the sleep is now by Victor Stinner · 10 years ago
- 0c2fd89 Revert changeset d927047b1d8eb87738676980a24930d053ba2150 by Victor Stinner · 10 years ago
- 945c82e test by Victor Stinner · 10 years ago
- 65e4cb1 Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), which will be used for the official 3.5 release. by Steve Dower · 10 years ago
- f427a14 Issue #22592: Drop support of the Borland C compiler to build Python by Victor Stinner · 10 years ago
- ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
- 67ca33d Issue #22043: Oops, fix perf_counter() on UNIX if no monotonic clock is by Victor Stinner · 10 years ago
- 5488449 Issue #22043: Simplify time.perf_counter() on Windows by Victor Stinner · 10 years ago
- 0011124 Issue #22043: _PyTime_Init() now checks if the system clock works. by Victor Stinner · 10 years ago
- 7efb833 Issue #22287: On UNIX, _PyTime_gettimeofday() now uses by Victor Stinner · 10 years ago
- a734af3 timemodule.c: Replace PyExc_IOError with PyExc_OSError by Victor Stinner · 10 years ago
- 1ac4261 Issue #19748: On AIX, time.mktime() now raises an OverflowError for year by Victor Stinner · 11 years ago
- 3c1b379 Issue #20320: select.select() and select.kqueue.control() now round the timeout by Victor Stinner · 11 years ago
- 93965f7 Issue #19634: time.strftime("%y") now raises a ValueError on Solaris when given by Victor Stinner · 11 years ago
- 136f064 Issue #19634: Fix time_strftime() on AIX, format is a wchar_t* not a PyObject* by Victor Stinner · 11 years ago
- 55329f8 Issue #19634: time.strftime("%y") now raises a ValueError on AIX when given a by Victor Stinner · 11 years ago
- bbe268f Issue13674 Correct crash with strftime %y format under Windows by Tim Golden · 11 years ago
- 6e51b8f Issue13674 Correct crash with strftime %y format under Windows by Tim Golden · 11 years ago
- 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
- 2ff51b8 Issue #18408: Fix time.tzset(), detect exception when calling PyInit_timezone() by Victor Stinner · 11 years ago
- 9303749 Fix time.mktime() and datetime.datetime.timestamp() on AIX by Victor Stinner · 12 years ago
- d7a034b (Merge 3.3) Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 by Victor Stinner · 12 years ago
- 36b82d8 Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 by Victor Stinner · 12 years ago
- 245bbee Merge. by Richard Oudkerk · 12 years ago
- cf8a1e5 - Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'s "tv_nsec" member is not a C long. by Antoine Pitrou · 12 years ago
- b26a9b1 Replace WaitForSingleObject with WaitForSingleObjectEx, by Martin v. Löwis · 12 years ago
- 14c81ab #16135: Removal of OS/2 support (Modules/*) by Jesus Cea · 12 years ago
- cf77454 Issue #9650: List commonly used format codes in time.strftime and time.strptime docsttings. by Alexander Belopolsky · 12 years ago
- c142bba Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields by Alexander Belopolsky · 13 years ago
- 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 13 years ago
- bda4b88 time.get_clock_info() uses a namespace instead of structseq by Victor Stinner · 13 years ago
- d973824 Fixed a typo in time_localtime() by Alexander Belopolsky · 13 years ago
- 49a69e4 strip is_ prefixes on clock_info fields by Benjamin Peterson · 13 years ago
- ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 13 years ago
- b8d0169 Fix clock_gettime/getres/settime: PyArg_ParseTuple() expects an int by Victor Stinner · 13 years ago
- 30d7947 Expose clock_settime() as time.clock_settime() by Victor Stinner · 13 years ago
- 1470f35 Add time.CLOCK_HIGHRES constant, needed on Solaris by Victor Stinner · 13 years ago
- ad95c2d time.time() now uses clock_gettime(CLOCK_REALTIME) if available by Victor Stinner · 13 years ago
- 74eb6c0 Document the fact that mach_timebase_info() cannot fail by Victor Stinner · 13 years ago
- 8486076 Fix time.steady(strict=True): don't use CLOCK_REALTIME by Victor Stinner · 13 years ago
- 70b2e1e Issue #14368: _PyTime_gettimeofday() cannot fail by Victor Stinner · 13 years ago
- 071eca3 Issue #10278: Add an optional strict argument to time.steady(), False by default by Victor Stinner · 13 years ago
- ec919cc Issue #10278: Drop time.monotonic() function, rename time.wallclock() to time.steady() by Victor Stinner · 13 years ago
- 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 13 years ago
- a8ec5ea Issue #14104: Implement time.monotonic() on Mac OS X, by Victor Stinner · 13 years ago
- 4aea7d3 Issue #14125: Fix refleak in timemodule.c on Windows. Thanks sbt for pointing by Stefan Krah · 13 years ago
- 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 13 years ago
- ccd5715 PEP 410 by Victor Stinner · 13 years ago
- 8b30201 Issue #13846: Add time.monotonic(), monotonic clock. by Victor Stinner · 13 years ago
- 85fdfa8 Issue #13847: time.clock() now raises a RuntimeError if the processor time used by Victor Stinner · 13 years ago
- c1b5d34 Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead by Victor Stinner · 13 years ago
- e39ebe4 Merge by Antoine Pitrou · 13 years ago
- 855889b Issue #10278: fix a typo in the doc by Victor Stinner · 13 years ago
- b94b266 Close #10278: Add time.wallclock() function, monotonic clock. by Victor Stinner · 13 years ago
- 2c08560 Fix error handling in timemodule.c by Antoine Pitrou · 13 years ago
- ab87021 Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.c by Victor Stinner · 13 years ago
- 136ea49 Issue #10951: Fix a compiler warning in timemodule.c by Victor Stinner · 13 years ago
- 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
- f2ea71f Issue #13560: Add PyUnicode_EncodeLocale() by Victor Stinner · 13 years ago
- af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
- ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
- c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
- db62389 (Merge 3.2) Issue #5905: time.strftime() is now using the locale encoding, by Victor Stinner · 13 years ago
- 720f34a Issue #5905: time.strftime() is now using the locale encoding, instead of by Victor Stinner · 13 years ago
- 6dd381e Issue #12328: Under Windows, refactor handling of Ctrl-C events and by Antoine Pitrou · 13 years ago
- e0be423 Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to by Victor Stinner · 13 years ago
- 5a3ff79 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
- bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
- 792b47f (Merge 3.2) Issue #10653: On Windows, use strftime() instead of wcsftime() by Victor Stinner · 13 years ago
- c1f32ca Issue #10653: On Windows, use strftime() instead of wcsftime() because by Victor Stinner · 13 years ago
- afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
- 8d91d45 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
- 7f53a50 Issue #12459: time.sleep() now raises a ValueError if the sleep length is by Victor Stinner · 14 years ago
- 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 14 years ago
- 9122fdd Issue #9642: Fix the definition of time.clock() on Windows by Victor Stinner · 14 years ago
- 48b1ce5 Issue #12462: time.sleep() now calls immediatly the (Python) signal handler if by Victor Stinner · 14 years ago
- 66746cb Removed unused variable by Alexander Belopolsky · 14 years ago
- 03163ac Issue #11930: Remove deprecated time.accept2dyear. by Alexander Belopolsky · 14 years ago
- 736975a merge from 3.2 by Senthil Kumaran · 14 years ago
- ae664fb Merge from 3.1 by Senthil Kumaran · 14 years ago