1. ecb9018 Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space by Serhiy Storchaka · 8 years ago
  2. 7ff51bd Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space by Serhiy Storchaka · 8 years ago
  3. e3fd248 Issue #28253: Fixed calendar functions for extreme months: 0001-01 and 9999-12. by Alexander Belopolsky · 8 years ago
  4. 957b756 Issue #28253: Fixed calendar functions for extreme months: 0001-01 and 9999-12. by Alexander Belopolsky · 8 years ago
  5. 4eb376c Issue #23883: Add missing APIs to calendar.__all__ by Martin Panter · 8 years ago
  6. e56a919 Issue #25523: Merge a-to-an corrections from 3.5 by Martin Panter · 9 years ago
  7. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  8. 9785261 Issue #18973: Command-line interface of the calendar module now uses argparse by Serhiy Storchaka · 9 years ago
  9. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  10. 85710a4 #15421: fix an OverflowError in Calendar.itermonthdates() after datetime.MAXYEAR. Patch by Cédric Krier. by Ezio Melotti · 12 years ago
  11. 962fed9 Fix closes Issue10087 - fixing the output of calendar display in the html format. Patch by Chris Lambacher. Test Contributed by catherine. by Senthil Kumaran · 13 years ago
  12. 7004bd1 #10092: Properly reset locale in Locale*Calendar classes. The context manager was buggy because setlocale() returns the *new* locale, not the old. Also add a test for this. by Georg Brandl · 14 years ago
  13. f87cc04 Fixed the docstring for calendar.isleap() function. by Alexander Belopolsky · 14 years ago
  14. 97958cf Undo r81988 code change leaving added test. by Alexander Belopolsky · 14 years ago
  15. 43ca710 Issue 6280: Tests and simpler implementation for calendar.timegm by Alexander Belopolsky · 14 years ago
  16. fd68087 #3059: Stop decoding Unicode in calendar module. by Georg Brandl · 16 years ago
  17. 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 16 years ago
  18. 77c02eb Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617-60678 via svnmerge from by Christian Heimes · 16 years ago
  19. 32fbe59 Merged revisions 58939-58946 via svnmerge from by Christian Heimes · 17 years ago
  20. 96f3163 Merged revisions 58930-58938 via svnmerge from by Christian Heimes · 17 years ago
  21. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  22. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  23. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  24. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  25. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  26. 77d08bc SF bug #1193890: calendar.weekheader not found in __all__ by Raymond Hettinger · 19 years ago
  27. bbc0d44 SF bug 1065388: calendar day/month name lookup too slow by Tim Peters · 20 years ago
  28. 492faa5 There is no reason to have an underscore after self by Neal Norwitz · 20 years ago
  29. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  30. 6143648 SF 685011: calendar module overflow handling by Raymond Hettinger · 21 years ago
  31. e11b510 SF 658405: calendar.py to rely on the datetime module instead of the time by Raymond Hettinger · 21 years ago
  32. 9ecf9ce Patches #626105: by Raymond Hettinger · 22 years ago
  33. d058f08 Eliminate unused instance variable by Raymond Hettinger · 22 years ago
  34. 9c051d7 SF 570727 indexer() class no longer needed since lists now support slicing by Raymond Hettinger · 22 years ago
  35. 0c2c8e7 SF bug 533234: tm_isdst > 1 Passed to strftime. by Tim Peters · 22 years ago
  36. 07c57d4 better solution for bug #533234 courtesy of Tim. by Skip Montanaro · 22 years ago
  37. e8c6a3e guarantee that the dst flag of synthetic "time" tuples passed to strftime by Skip Montanaro · 22 years ago
  38. 1b9c177 Corrected _localized_name.__getitem__ based on code in patch 503202 (which I by Skip Montanaro · 22 years ago
  39. 4c83495 make _localized_name instances work more like the tuples they replaced. In by Skip Montanaro · 22 years ago
  40. 1d09910 Application of patch #401842 by Denis S. Otkidach to support by Barry Warsaw · 23 years ago
  41. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 23 years ago
  42. 88869f9 Whitespace normalization. by Tim Peters · 23 years ago
  43. 8152d32 Update the code to better reflect recommended style: by Fred Drake · 23 years ago
  44. 46735ad Fixed leapdays(). From Patch #101841, by Denis S. Otkidach. by Guido van Rossum · 24 years ago
  45. ad3bc44 patches from David Goodger. Closes patch 101085. by Skip Montanaro · 24 years ago
  46. a05e293 typos fixed by Rob Hooft by Jeremy Hylton · 24 years ago
  47. 4acc25b Mass patch by Ka-Ping Yee: by Guido van Rossum · 24 years ago
  48. b39aff8 Add unrelated but handy function: timegm(), to calculate Unix by Guido van Rossum · 25 years ago
  49. 00245cf No need to import gmtime, ctime, asctime. by Guido van Rossum · 25 years ago
  50. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  51. dd8cb44 Some minute changes. by Guido van Rossum · 30 years ago
  52. 5cfa5df * calendar.py: all libC functionality now moved to built-in time module by Guido van Rossum · 31 years ago
  53. 9b3bc71 * aifc.py: don't die on invalid MARK chunk by Guido van Rossum · 31 years ago
  54. 52fc1f6 * calendar.py: minor cleanups by Guido van Rossum · 31 years ago
  55. 995c33a aiff.py, calendar.py: change functions taking a tuple to really take a by Guido van Rossum · 31 years ago
  56. fea2af1 * More changes due to stricter argument passing rules by Guido van Rossum · 31 years ago
  57. 2db9135 Misc changes and new modules. whrandom is "objectified". SOCKET.py by Guido van Rossum · 32 years ago
  58. eb23155 Changed calendar.py to define lists of literals instead of tuples. by Guido van Rossum · 32 years ago
  59. bdfcfcc New == syntax by Guido van Rossum · 32 years ago
  60. 5c5e829 Use IOError. by Guido van Rossum · 32 years ago
  61. c636014 Initial revision by Guido van Rossum · 34 years ago