summaryrefslogtreecommitdiff
path: root/Modules/timemodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #10762: Guard against invalid/non-supported format string '%f' on Windo...Senthil Kumaran2011-04-061-1/+1
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* Merged revisions 87919 via svnmerge fromAlexander Belopolsky2011-02-151-1/+4
* Merged revisions 86542,87136,87216,87221,87228,87256,87337-87338,87372,87516,...R. David Murray2011-02-111-1/+1
* Merged revisions 87648,87656 via svnmerge fromAlexander Belopolsky2011-01-021-0/+4
* Issue #8899: time.struct_time now has class and atribute docstrings.Alexander Belopolsky2010-06-051-10/+16
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-594/+594
* Fix whitespace.Brett Cannon2009-09-221-42/+43
* When range checking was added to time.strftime() a check was placed on tm_isdstBrett Cannon2009-09-221-5/+7
* issue 4804: Provide checks for the format string of strftime, and for the "m...Kristján Valur Jónsson2009-02-041-0/+17
* Issue 3289. Removed two lines that ended doing nothing.Facundo Batista2008-07-051-2/+0
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-3/+3
* Renamed PyString to PyBytesChristian Heimes2008-05-261-3/+3
* typeSkip Montanaro2008-04-061-1/+1
* Declare inittimezone static.Skip Montanaro2008-04-051-2/+3
* add %f format to datetime - issue 1158Skip Montanaro2008-03-151-1/+1
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-031-2/+2
* Fix the docstrings of time.localtime() and gmtime() for the tm_mday field.Brett Cannon2007-12-241-2/+3
* In Windows' time.clock(), when QueryPerformanceFrequency() fails,Georg Brandl2007-03-291-1/+2
* Fix typo.Walter Dörwald2006-12-211-1/+1
* Remove an XXX marker in a comment.Brett Cannon2006-07-211-1/+1
* Fix bug #1520914. Starting in 2.4, time.strftime() began to check the boundsBrett Cannon2006-07-181-4/+28
* Fix build problems with the platform SDK on windows. It is not sufficient to...Kristján Valur Jónsson2006-07-031-1/+1
* Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CR...Kristján Valur Jónsson2006-06-121-0/+8
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-101-0/+2
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-24/+11
* Repair idiot typo, and complete the job of trying toTim Peters2006-05-251-4/+4
* Some Win64 pre-release in 2000 didn't supportTim Peters2006-05-251-4/+3
* Patch #1490224: set time.altzone correctly on Cygwin.Georg Brandl2006-05-171-1/+1
* Patch 1471925 - Weak linking support for OSXRonald Oussoren2006-04-231-0/+13
* Initialize structseq types only once.Martin v. Löwis2006-04-161-1/+6
* C++ compiler changes. casts, rename variables with reserved names.Anthony Baxter2006-04-131-1/+1
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* allow ctime(), gmtime(), and localtime() to take None as equivalent to an omi...Fred Drake2004-08-031-9/+30
* Fix SF #994580, typo in time.tzsets docstring. Backport candidateNeal Norwitz2004-07-201-1/+1
* Bug 975996: Add _PyTime_DoubleToTimet to C APITim Peters2004-06-201-7/+5
* Raise ValueError when value being stored in a time_t variable will result inBrett Cannon2004-06-191-5/+40
* Have strftime() check its time tuple argument to make sure the tuple's valuesBrett Cannon2004-03-021-0/+42
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-56/+0
* Make temporary change of using _strptime for time.strptime permanent.Brett Cannon2003-07-011-41/+1
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-1/+5
* SF patch #718867: Fix reference leak for time.strptimeRaymond Hettinger2003-04-101-1/+4
* - New function time.tzset() provides access to the C library tzet()Guido van Rossum2003-03-141-74/+144
* Windows flavor of floatsleep(): folded long lines, introduced a tempTim Peters2003-01-191-12/+17
* When time.localtime() is passed a tick count the platform C localtime()Tim Peters2003-01-171-1/+1
* Patch #623780: Replace obsolete struct macros.Martin v. Löwis2002-10-161-2/+2
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch to call the Pure python strptime implementation if there's noGuido van Rossum2002-07-191-3/+18
* Fix bug 581232 - [Windows] Can not interrupt time.sleep()Mark Hammond2002-07-161-3/+46
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-40/+8