summaryrefslogtreecommitdiffstats
path: root/Lib/calendar.py
Commit message (Expand)AuthorAgeFilesLines
* #18705: fix a number of typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
* Issue #17049: Localized calendar methods now return unicode if a localeSerhiy Storchaka2013-01-311-0/+1
* #15421: fix an OverflowError in Calendar.itermonthdates() after datetime.MAX...Ezio Melotti2012-09-211-1/+5
* Merged revisions 85728 via svnmerge fromGeorg Brandl2010-11-261-2/+2
* Merged revisions 85725 via svnmerge fromAlexander Belopolsky2010-10-191-1/+1
* Fix some py3k warnings in the standard library.Florent Xicluna2010-03-071-0/+4
* Remove some from __future__ import with_statementsBenjamin Peterson2008-04-301-1/+0
* Fix typo in docstring for Calendar.itermonthdays().Walter Dörwald2008-02-071-2/+2
* Fix TextCalendar.prweek(). This closes issue #1427.Walter Dörwald2007-11-121-1/+1
* Fix for #1427: Error in standard module calendarChristian Heimes2007-11-121-8/+12
* Fix title endtag in HTMLCalender.formatyearpage(). Fix documentation forWalter Dörwald2007-08-281-1/+1
* calendar.py gets no benefit from xrange() instead of range()Raymond Hettinger2007-05-171-16/+16
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-3/+0
* Patch #1463288: use a context manager to temporarily switch locales.Walter Dörwald2006-04-121-28/+24
* missing 'self' from TextCalendar.prweek.Anthony Baxter2006-04-071-1/+1
* For backwards compatibility reasons the global functionWalter Dörwald2006-04-031-3/+9
* Always return firstweekday % 7 instead of complainingWalter Dörwald2006-04-031-3/+1
* Turn firstweekday into a property.Walter Dörwald2006-04-031-8/+11
* Always use firstweekday module 7.Walter Dörwald2006-04-021-1/+1
* Make firstweekday a simple attribute insteadWalter Dörwald2006-04-011-17/+12
* Bug #947906: Add classes LocaleTextCalendar and LocaleHTMLCalendar,Walter Dörwald2006-04-011-34/+156
* Bug #947906: An object oriented interface has been added to the calendarWalter Dörwald2006-03-311-118/+471
* SF bug #1193890: calendar.weekheader not found in __all__Raymond Hettinger2005-05-101-1/+2
* SF bug 1065388: calendar day/month name lookup too slowTim Peters2004-11-131-8/+18
* There is no reason to have an underscore after selfNeal Norwitz2004-06-071-1/+1
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-4/+4
* SF 685011: calendar module overflow handlingRaymond Hettinger2003-02-131-1/+1
* SF 658405: calendar.py to rely on the datetime module instead of the timeRaymond Hettinger2002-12-251-18/+8
* Patches #626105:Raymond Hettinger2002-10-221-13/+6
* Eliminate unused instance variableRaymond Hettinger2002-10-211-5/+5
* SF 570727 indexer() class no longer needed since lists now support slicingRaymond Hettinger2002-06-201-13/+4
* SF bug 533234: tm_isdst > 1 Passed to strftime.Tim Peters2002-03-231-18/+43
* better solution for bug #533234 courtesy of Tim.Skip Montanaro2002-03-221-1/+2
* guarantee that the dst flag of synthetic "time" tuples passed to strftimeSkip Montanaro2002-03-221-1/+1
* Corrected _localized_name.__getitem__ based on code in patch 503202 (which ISkip Montanaro2002-03-151-7/+9
* make _localized_name instances work more like the tuples they replaced. InSkip Montanaro2002-03-151-5/+12
* Application of patch #401842 by Denis S. Otkidach to supportBarry Warsaw2001-05-221-9/+11
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+4
* Whitespace normalization.Tim Peters2001-01-141-3/+3
* Update the code to better reflect recommended style:Fred Drake2000-12-121-1/+1
* Fixed leapdays(). From Patch #101841, by Denis S. Otkidach.Guido van Rossum2000-10-091-2/+4
* patches from David Goodger. Closes patch 101085.Skip Montanaro2000-08-301-69/+104
* typos fixed by Rob HooftJeremy Hylton2000-06-281-1/+1
* Mass patch by Ka-Ping Yee:Guido van Rossum2000-02-021-118/+116
* Add unrelated but handy function: timegm(), to calculate UnixGuido van Rossum1999-06-091-0/+17
* No need to import gmtime, ctime, asctime.Guido van Rossum1999-05-031-2/+2
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-011-6/+1
* Some minute changes.Guido van Rossum1993-12-291-1/+0
* * calendar.py: all libC functionality now moved to built-in time moduleGuido van Rossum1993-06-231-27/+8
* * aifc.py: don't die on invalid MARK chunkGuido van Rossum1993-06-201-121/+81