summaryrefslogtreecommitdiffstats
path: root/Modules/timemodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #1726687: time.mktime() will now correctly compute value oneAlexander Belopolsky2011-01-111-1/+4
* Issue #10864: limit year to [1; 9999] for strftime() on SolarisVictor Stinner2011-01-081-1/+1
* Issue #1777412: Remove all limits on tm_year from time.strftime()Victor Stinner2011-01-081-8/+1
* Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900Victor Stinner2011-01-081-6/+12
* Fixed error handling branches. ThanksAlexander Belopolsky2011-01-081-14/+19
* Issue #1777412: extended year range of strftime down to 1000.Alexander Belopolsky2011-01-081-2/+2
* Issue #10827: Changed the rules for 2-digit years. The time.asctimeAlexander Belopolsky2011-01-071-15/+32
* Further simplify gettmarg()Alexander Belopolsky2011-01-061-19/+5
* Use PyOS_snprintf for better portability.Alexander Belopolsky2011-01-061-5/+5
* - time.accept2dyear = True is now equivalent to time.accept2dyear = 1Alexander Belopolsky2011-01-051-34/+19
* Whitespace cleanupAlexander Belopolsky2011-01-041-2/+1
* Issue #8013: time.asctime and time.ctime no longer call system asctimeAlexander Belopolsky2011-01-041-22/+39
* #8013 follow-up:Georg Brandl2011-01-021-7/+13
* Issue #8013: Fixed time.asctime segfault when OS's asctime failsAlexander Belopolsky2011-01-021-0/+4
* #10699: fix docstring for tzset: it does not take a parameterR. David Murray2010-12-141-1/+1
* Include structseq.h in Python.h, and remove now-redundant includes in individ...Georg Brandl2010-11-301-1/+0
* PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*Victor Stinner2010-10-071-1/+1
* time: fix gcc warningVictor Stinner2010-10-071-27/+28
* Issue #6608: time.asctime is now checking struct tm fields its inputAlexander Belopolsky2010-10-011-62/+76
* Issue #9979: Use PyUnicode_AsWideCharString() in time.strftime()Victor Stinner2010-09-291-21/+20
* Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C APIAlexander Belopolsky2010-08-051-55/+4
* Issue #9012: "Separate compilation of time and datetime modules."Alexander Belopolsky2010-06-161-26/+0
* Merged revisions 81756 via svnmerge fromAlexander Belopolsky2010-06-051-10/+16
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-632/+632
* Poor PLAN9, it isn't supportedAntoine Pitrou2010-02-221-16/+0
* Merged revisions 75020 via svnmerge fromBrett Cannon2009-09-221-42/+43
* Merged revisions 75011 via svnmerge fromBrett Cannon2009-09-221-5/+7
* Issue #6183: Disables wcsftime on VC6.Hirokazu Yamamoto2009-06-031-1/+1
* Issue #5562: Use wcsftime for time.strftime where available.Martin v. Löwis2009-05-301-9/+42
* re-merge r69268 (issue4804) from trunk:Amaury Forgeot d'Arc2009-03-021-0/+18
* Issue #5249: time.strftime returned malformed string when format stringHirokazu Yamamoto2009-02-161-3/+8
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,...Georg Brandl2008-07-161-2/+0
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-8/+22
* Merged revisions 62177-62178,62180-62193 via svnmerge fromMartin v. Löwis2008-04-071-3/+4
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-1/+1
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-2/+2
* Merged revisions 59595-59604 via svnmerge fromChristian Heimes2007-12-281-2/+3
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-041-2/+2
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* Patch #1314 by Christian Heimes.Guido van Rossum2007-10-231-3/+2
* Move definition of TZNAME_ENCODING further up.Martin v. Löwis2007-08-301-2/+2
* Explicitly convert tzname to Unicode. Fixes #1040.Martin v. Löwis2007-08-301-2/+7
* Reorder code and decls so it's compilable with gcc 2.96 (C89).Guido van Rossum2007-08-251-1/+2
* Remove PyArg_Parse usage from time module. (An extra set of eyeballs onSkip Montanaro2007-08-241-10/+51
* Patch by Ero Carrera to get rid of PyString in timemodule.c.Guido van Rossum2007-08-241-3/+10
* Remove support for BeOSSkip Montanaro2007-08-171-24/+1
* Remove RISCOS supportSkip Montanaro2007-08-161-12/+0
* Change time.strftime() to return a unicode string.Walter Dörwald2007-05-311-5/+4