| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #28253: Fixed calendar functions for extreme months: 0001-01 and 9999-12. | Alexander Belopolsky | 2016-09-28 | 1 | -10/+11 |
|
|
* | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
|
|
* | #18705: fix a number of typos. Patch by Févry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -1/+1 |
|
|
* | Issue #17049: Localized calendar methods now return unicode if a locale | Serhiy Storchaka | 2013-01-31 | 1 | -0/+1 |
|
|
* | #15421: fix an OverflowError in Calendar.itermonthdates() after datetime.MAX... | Ezio Melotti | 2012-09-21 | 1 | -1/+5 |
|
|
* | Merged revisions 85728 via svnmerge from | Georg Brandl | 2010-11-26 | 1 | -2/+2 |
|
|
* | Merged revisions 85725 via svnmerge from | Alexander Belopolsky | 2010-10-19 | 1 | -1/+1 |
|
|
* | Fix some py3k warnings in the standard library. | Florent Xicluna | 2010-03-07 | 1 | -0/+4 |
|
|
* | Remove some from __future__ import with_statements | Benjamin Peterson | 2008-04-30 | 1 | -1/+0 |
|
|
* | Fix typo in docstring for Calendar.itermonthdays(). | Walter Dörwald | 2008-02-07 | 1 | -2/+2 |
|
|
* | Fix TextCalendar.prweek(). This closes issue #1427. | Walter Dörwald | 2007-11-12 | 1 | -1/+1 |
|
|
* | Fix for #1427: Error in standard module calendar | Christian Heimes | 2007-11-12 | 1 | -8/+12 |
|
|
* | Fix title endtag in HTMLCalender.formatyearpage(). Fix documentation for | Walter Dörwald | 2007-08-28 | 1 | -1/+1 |
|
|
* | calendar.py gets no benefit from xrange() instead of range() | Raymond Hettinger | 2007-05-17 | 1 | -16/+16 |
|
|
* | Get rid of __context__, per the latest changes to PEP 343 and python-dev | Guido van Rossum | 2006-05-02 | 1 | -3/+0 |
|
|
* | Patch #1463288: use a context manager to temporarily switch locales. | Walter Dörwald | 2006-04-12 | 1 | -28/+24 |
|
|
* | missing 'self' from TextCalendar.prweek. | Anthony Baxter | 2006-04-07 | 1 | -1/+1 |
|
|
* | For backwards compatibility reasons the global function | Walter Dörwald | 2006-04-03 | 1 | -3/+9 |
|
|
* | Always return firstweekday % 7 instead of complaining | Walter Dörwald | 2006-04-03 | 1 | -3/+1 |
|
|
* | Turn firstweekday into a property. | Walter Dörwald | 2006-04-03 | 1 | -8/+11 |
|
|
* | Always use firstweekday module 7. | Walter Dörwald | 2006-04-02 | 1 | -1/+1 |
|
|
* | Make firstweekday a simple attribute instead | Walter Dörwald | 2006-04-01 | 1 | -17/+12 |
|
|
* | Bug #947906: Add classes LocaleTextCalendar and LocaleHTMLCalendar, | Walter Dörwald | 2006-04-01 | 1 | -34/+156 |
|
|
* | Bug #947906: An object oriented interface has been added to the calendar | Walter Dörwald | 2006-03-31 | 1 | -118/+471 |
|
|
* | SF bug #1193890: calendar.weekheader not found in __all__ | Raymond Hettinger | 2005-05-10 | 1 | -1/+2 |
|
|
* | SF bug 1065388: calendar day/month name lookup too slow | Tim Peters | 2004-11-13 | 1 | -8/+18 |
|
|
* | There is no reason to have an underscore after self | Neal Norwitz | 2004-06-07 | 1 | -1/+1 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -4/+4 |
|
|
* | SF 685011: calendar module overflow handling | Raymond Hettinger | 2003-02-13 | 1 | -1/+1 |
|
|
* | SF 658405: calendar.py to rely on the datetime module instead of the time | Raymond Hettinger | 2002-12-25 | 1 | -18/+8 |
|
|
* | Patches #626105: | Raymond Hettinger | 2002-10-22 | 1 | -13/+6 |
|
|
* | Eliminate unused instance variable | Raymond Hettinger | 2002-10-21 | 1 | -5/+5 |
|
|
* | SF 570727 indexer() class no longer needed since lists now support slicing | Raymond Hettinger | 2002-06-20 | 1 | -13/+4 |
|
|
* | SF bug 533234: tm_isdst > 1 Passed to strftime. | Tim Peters | 2002-03-23 | 1 | -18/+43 |
|
|
* | better solution for bug #533234 courtesy of Tim. | Skip Montanaro | 2002-03-22 | 1 | -1/+2 |
|
|
* | guarantee that the dst flag of synthetic "time" tuples passed to strftime | Skip Montanaro | 2002-03-22 | 1 | -1/+1 |
|
|
* | Corrected _localized_name.__getitem__ based on code in patch 503202 (which I | Skip Montanaro | 2002-03-15 | 1 | -7/+9 |
|
|
* | make _localized_name instances work more like the tuples they replaced. In | Skip Montanaro | 2002-03-15 | 1 | -5/+12 |
|
|
* | Application of patch #401842 by Denis S. Otkidach to support | Barry Warsaw | 2001-05-22 | 1 | -9/+11 |
|
|
* | added __all__ lists to a number of Python modules | Skip Montanaro | 2001-01-20 | 1 | -0/+4 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -3/+3 |
|
|
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -1/+1 |
|
|
* | Fixed leapdays(). From Patch #101841, by Denis S. Otkidach. | Guido van Rossum | 2000-10-09 | 1 | -2/+4 |
|
|
* | patches from David Goodger. Closes patch 101085. | Skip Montanaro | 2000-08-30 | 1 | -69/+104 |
|
|
* | typos fixed by Rob Hooft | Jeremy Hylton | 2000-06-28 | 1 | -1/+1 |
|
|
* | Mass patch by Ka-Ping Yee: | Guido van Rossum | 2000-02-02 | 1 | -118/+116 |
|
|
* | Add unrelated but handy function: timegm(), to calculate Unix | Guido van Rossum | 1999-06-09 | 1 | -0/+17 |
|
|
* | No need to import gmtime, ctime, asctime. | Guido van Rossum | 1999-05-03 | 1 | -2/+2 |
|
|
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 | 1 | -6/+1 |
|
|
* | Some minute changes. | Guido van Rossum | 1993-12-29 | 1 | -1/+0 |
|
|