summaryrefslogtreecommitdiff
path: root/Modules/timemodule.c
Commit message (Expand)AuthorAgeFilesLines
...
* | (Merge 3.3) Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999Victor Stinner2013-06-251-31/+26
|\ \ | |/ |/|
| * Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'...Antoine Pitrou2013-04-171-31/+26
| |\
| | * Replace WaitForSingleObject with WaitForSingleObjectEx,Martin v. L?wis2013-01-251-1/+1
| | * #16135: Removal of OS/2 support (Modules/*)Jesus Cea2012-10-051-27/+0
| | * Issue #9650: List commonly used format codes in time.strftime and time.strpti...Alexander Belopolsky2012-10-021-3/+25
* | | Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999Victor Stinner2013-06-251-1/+1
|/ /
* | - Issue #17782: Fix undefined behaviour on platforms where ``struct timespec`...Antoine Pitrou2013-04-171-1/+5
|/
* Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fieldsAlexander Belopolsky2012-06-131-2/+34
* PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() resultVictor Stinner2012-06-121-21/+15
* time.get_clock_info() uses a namespace instead of structseqVictor Stinner2012-06-121-37/+20
* Fixed a typo in time_localtime()Alexander Belopolsky2012-06-121-1/+1
* strip is_ prefixes on clock_info fieldsBenjamin Peterson2012-05-011-31/+31
* Issue #14428, #14397: Implement the PEP 418Victor Stinner2012-04-291-89/+460
* Fix clock_gettime/getres/settime: PyArg_ParseTuple() expects an intVictor Stinner2012-04-131-10/+4
* Expose clock_settime() as time.clock_settime()Victor Stinner2012-04-031-0/+30
* Add time.CLOCK_HIGHRES constant, needed on SolarisVictor Stinner2012-04-031-0/+3
* time.time() now uses clock_gettime(CLOCK_REALTIME) if availableVictor Stinner2012-03-281-0/+11
* Document the fact that mach_timebase_info() cannot failVictor Stinner2012-03-281-4/+8
* Fix time.steady(strict=True): don't use CLOCK_REALTIMEVictor Stinner2012-03-261-7/+28
* Issue #14368: _PyTime_gettimeofday() cannot failVictor Stinner2012-03-261-7/+1
* Issue #10278: Add an optional strict argument to time.steady(), False by defaultVictor Stinner2012-03-151-17/+41
* Issue #10278: Drop time.monotonic() function, rename time.wallclock() to time...Victor Stinner2012-03-151-67/+15
* Close #14180: Factorize code to convert a number of seconds to time_t, timeva...Victor Stinner2012-03-131-6/+1
* Issue #14104: Implement time.monotonic() on Mac OS X,Victor Stinner2012-03-131-1/+17
* Issue #14125: Fix refleak in timemodule.c on Windows. Thanks sbt for pointingStefan Krah2012-02-271-2/+3
* Issue #13846: Add time.monotonic(), monotonic clock.Victor Stinner2012-02-071-15/+67
* Issue #13847: time.clock() now raises a RuntimeError if the processor time usedVictor Stinner2012-01-271-11/+27
* Issue #13847: time.localtime() and time.gmtime() now raise an OSError insteadVictor Stinner2012-01-271-52/+62
* MergeAntoine Pitrou2012-01-181-0/+47
|\
| * Issue #10278: fix a typo in the docVictor Stinner2012-01-181-1/+1
| * Close #10278: Add time.wallclock() function, monotonic clock.Victor Stinner2012-01-181-0/+47
* | Fix error handling in timemodule.cAntoine Pitrou2012-01-181-2/+6
|/
* Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.cVictor Stinner2011-12-171-141/+128
|\
| * Issue #13560: Locale codec functions use the classic "errors" parameter,Victor Stinner2011-12-171-4/+5
| * Issue #13560: Add PyUnicode_EncodeLocale()Victor Stinner2011-12-171-1/+1
| * Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale()Victor Stinner2011-12-161-3/+3
| * Issue #10350: Read and save errno before calling a function which might overw...Antoine Pitrou2011-12-161-1/+3
| |\
| * \ (Merge 3.2) Issue #5905: time.strftime() is now using the locale encoding,Victor Stinner2011-12-091-137/+123
| |\ \
| | * | Issue #12328: Under Windows, refactor handling of Ctrl-C events andAntoine Pitrou2011-11-211-28/+2
| | * | Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants toVictor Stinner2011-10-251-0/+72
| | * | Issue #10653: Fix time.strftime() on Windows, check for invalid format stringsVictor Stinner2011-10-161-4/+4
| | * | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1
| | * | (Merge 3.2) Issue #10653: On Windows, use strftime() instead of wcsftime()Victor Stinner2011-10-141-112/+54
| | |\ \
| | | * | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-2/+3
| | | * | Issue #12459: time.sleep() now raises a ValueError if the sleep length isVictor Stinner2011-07-051-0/+5
| | | * | Issue #9642: Uniformize the tests on the availability of the mbcs codecVictor Stinner2011-07-041-1/+1
| | | * | Issue #9642: Fix the definition of time.clock() on WindowsVictor Stinner2011-07-041-29/+25
| | | * | Issue #12462: time.sleep() now calls immediatly the (Python) signal handler ifVictor Stinner2011-07-011-6/+11
| | | * | Removed unused variableAlexander Belopolsky2011-05-021-1/+0
| | | * | Issue #11930: Remove deprecated time.accept2dyear.Alexander Belopolsky2011-05-021-54/+1