1. 21896a3 Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,78331-78332,78336,78339,78343,78378-78379,78415,78559,78717,78791 via svnmerge from by Benjamin Peterson · 14 years ago
  2. 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 14 years ago
  3. f6489f9 Merged revisions 75264,75268,75293,75318,75391-75392,75436,75478,75971,76003,76058,76140-76141,76231,76380,76428-76429 via svnmerge from by Benjamin Peterson · 15 years ago
  4. 03f1344 Merged revisions 76034,76054 via svnmerge from by Antoine Pitrou · 15 years ago
  5. fa81534 Merged revisions 72213 via svnmerge from by Andrew M. Kuchling · 15 years ago
  6. 548ac41 In 3k this becomes an items() call. by R. David Murray · 15 years ago
  7. 6aa2d1f Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-65645 via svnmerge from by Georg Brandl · 16 years ago
  8. aa5b411 #756982: Remove rfc822 reference. by Georg Brandl · 16 years ago
  9. 8041d47 fix __all__ by Benjamin Peterson · 16 years ago
  10. edb978f #2814: remove deprecated classes from mailbox module. Patch by Humberto Diogenes. by Georg Brandl · 16 years ago
  11. 9edef04 Correct Issue#1561: test_mailbox failed on Windows. by Amaury Forgeot d'Arc · 16 years ago
  12. fdab48e Merged revisions 60094-60123 via svnmerge from by Christian Heimes · 17 years ago
  13. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  14. 671117a Force test_mailbox and test_old_mailbox into submission. by Guido van Rossum · 17 years ago
  15. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  16. d4eda82 SF patch# 1757839 by Alexandre Vassalotti -- make test_mailbox and by Guido van Rossum · 17 years ago
  17. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  18. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  19. 7cad4f3 Just enoug fixes so that test_mailbox fails instead of loops forever. by Guido van Rossum · 17 years ago
  20. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  21. dde4c2c Fix another unit test. by Guido van Rossum · 18 years ago
  22. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
  23. 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 18 years ago
  24. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
  25. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  26. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  27. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  28. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  29. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  30. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  31. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  32. 6abc685 Patch #880621: the last message of a Babyl mailbox ends in '\037' instead of by Johannes Gijsbers · 20 years ago
  33. 3414c1c add missing newlines to read/readline. fixes bug #996359. by Skip Montanaro · 20 years ago
  34. 1263bd8 [Bug #925107] Make .readline() consider self.stop. This makes read() and readline() very similar, so they're refactored into _read. Patch by Johannes Gijsbers. by Andrew M. Kuchling · 20 years ago
  35. b5ba8d7 Lists work better when popping from the right. by Raymond Hettinger · 21 years ago
  36. 4bf1254 Undocumented feature: MHMailbox sets the msg object's _mh_msgno by Guido van Rossum · 22 years ago
  37. da5628f Fix an inaccuracy in the comment by Barry Warsaw · 22 years ago
  38. 46ac8eb Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i) by Raymond Hettinger · 22 years ago
  39. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  40. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 22 years ago
  41. 03f3ee6 Try /var/mail before trying /usr/mail. Most new systems use /var. by Neil Schemenauer · 22 years ago
  42. ffd05ee Added PortableUnixMailbox to the __all__ variable, and in the __main__ by Barry Warsaw · 22 years ago
  43. 93a696f SF bug #461073: mailbox __iter__ bug, by Andrew Dalke. by Guido van Rossum · 23 years ago
  44. ef8f4de Remove redundant imports (PyChecker). by Guido van Rossum · 23 years ago
  45. 72987a4 Make the Mailbox objects support iteration -- they already had the by Fred Drake · 23 years ago
  46. 2b5ff07 Get rid of the seek() method on the _Mailbox class. This was a by Guido van Rossum · 23 years ago
  47. 81ad67c Two changes: by Barry Warsaw · 24 years ago
  48. 17ab123 a few more modules get __all__ by Skip Montanaro · 24 years ago
  49. 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  50. de3518e Maildir.__init__(): Make sure self.boxes is set. by Fred Drake · 24 years ago
  51. cc4adf2 Add missing "s" from format string. This closes SourceForge patch #101714. by Fred Drake · 24 years ago
  52. d9a8dec Maildir.__init__(): Use the correct filter for filenames, so that this by Fred Drake · 24 years ago
  53. e108a02 Detlef Lannert <lannert@uni-duesseldorf.de>: by Fred Drake · 24 years ago
  54. d2653a9 Use built in function filter instead of doing it laboriously by hand. by Sjoerd Mullender · 24 years ago
  55. 0707fea Improve MHMailbox: messages are now sorted in numerical order. by Guido van Rossum · 24 years ago
  56. dbbf76b Make tabnanny happy. mailbox.py: Convert to 4-space indents. by Fred Drake · 24 years ago
  57. 1571a1e Since Thomas Wouters kept complaining that he wants access to the the by Guido van Rossum · 24 years ago
  58. 13a2c27 Untabify to pass the -tt test. by Fred Drake · 25 years ago
  59. cd97576 Only set msg.fp to None when there are no extra arguments; if there by Guido van Rossum · 25 years ago
  60. e256a0f Add readlines() to _Subfile class. Not clear who would need it, but by Guido van Rossum · 25 years ago
  61. 9a4d637 Patch by Mike Meyer: by Guido van Rossum · 26 years ago
  62. 7333c4c Patch by Piet van Oostrum to avoid calculating with the result of by Guido van Rossum · 26 years ago
  63. 8ba4036 The _fromlinepattern was a little too restrictive -- some sendmails by Guido van Rossum · 26 years ago
  64. e50b0a4 In class _Subfile, make sure read(n) can't read beyond EOF. Also by Guido van Rossum · 26 years ago
  65. fbe63de UnixMailbox: don't be fooled by lines that begin with "From " but by Guido van Rossum · 26 years ago
  66. 8ca8420 A few lines were indented using spaces instead of tabs -- fix them. by Guido van Rossum · 26 years ago
  67. 9694fca Convert all remaining *simple* cases of regex usage to re usage. by Guido van Rossum · 27 years ago
  68. fdf58fe Added BabylMailbox class by Fred Lundh (untested). by Guido van Rossum · 27 years ago
  69. 6dd8783 Improve getting the mailbox from the environment. by Guido van Rossum · 27 years ago
  70. f06ee5f /usr/local/bin/python -> /usr/bin/env python by Guido van Rossum · 28 years ago
  71. 6244867 Revamped test case and updated doc string. by Guido van Rossum · 28 years ago
  72. 44a4d59 support 'whence' arg to seek() by Guido van Rossum · 29 years ago
  73. 9715779 Added class MHMailbox Added optional third parameter to seek. by Jack Jansen · 29 years ago
  74. 2922c6d Changes to use default argument values where possible by Guido van Rossum · 30 years ago
  75. c7b6882 Jack's module for parsing UNIX mailbox files by Guido van Rossum · 30 years ago