summaryrefslogtreecommitdiffstats
path: root/Lib/mailbox.py
Commit message (Expand)AuthorAgeFilesLines
* Bug 3228: Explicitly supply the file mode to avoid creating executable files,Andrew M. Kuchling2008-08-041-2/+3
* Bug 1277: make Maildir use the user-provided factory instead of hard-wiring M...Andrew M. Kuchling2008-01-191-1/+4
* Avoid exception if there's a stray directory inside a Maildir folder.Andrew M. Kuchling2007-07-141-1/+5
* Whitespace normalization.Tim Peters2007-01-301-3/+3
* Make comment match the codeAndrew M. Kuchling2007-01-221-1/+1
* Improve pattern used for mbox 'From' lines; add a simple testAndrew M. Kuchling2007-01-221-2/+4
* Use new email module names (#1637162, #1637159, #1637157).Georg Brandl2007-01-221-12/+12
* [Apply length-checking.diff from bug #1599254]Andrew M. Kuchling2006-12-201-2/+23
* [Patch #1599256 from David Watson] check that os.fsync is available before us...Andrew M. Kuchling2006-12-141-1/+2
* Remove file-locking in MH.pack() method.Andrew M. Kuchling2006-11-171-21/+7
* [Patch #1514543] mailbox (Maildir): avoid losing messages on name clashAndrew M. Kuchling2006-11-091-5/+22
* [Patch #1514544 by David Watson] use fsync() to ensure data is really on diskAndrew M. Kuchling2006-11-091-7/+23
* [Bug #1569790] mailbox.Maildir.get_folder() loses factory informationAndrew M. Kuchling2006-11-091-4/+8
* [Bug #1575506] The _singlefileMailbox class was using the wrong file object i...Andrew M. Kuchling2006-10-271-1/+1
* Get mailbox module working on OS/2 EMX port.Andrew MacIntyre2006-07-231-2/+10
* According to the man pages on Gentoo Linux and Tru64, EACCES or EAGAINNeal Norwitz2006-06-281-1/+1
* [Bug #1512163] Use one set of locking methods, lockf();Andrew M. Kuchling2006-06-261-12/+2
* [Bug #1512163] Fix typo.Andrew M. Kuchling2006-06-261-1/+1
* Change WindowsError to carry the Win32 error code in winerror,Martin v. Löwis2006-05-111-28/+0
* Update checks to consider Windows error numbers.Martin v. Löwis2006-05-041-3/+29
* Use open() instead of file()Andrew M. Kuchling2006-05-021-20/+20
* Whitespace normalization.Tim Peters2006-04-221-3/+3
* Add Gregory K. Johnson's revised version of mailbox.py (funded byAndrew M. Kuchling2006-04-221-145/+1892
* Patch #880621: the last message of a Babyl mailbox ends in '\037' instead ofJohannes Gijsbers2004-08-211-1/+1
* add missing newlines to read/readline.Skip Montanaro2004-07-241-2/+2
* [Bug #925107] Make .readline() consider self.stop. This makes read() and rea...Andrew M. Kuchling2004-07-071-13/+8
* Lists work better when popping from the right.Raymond Hettinger2004-02-071-3/+4
* Undocumented feature: MHMailbox sets the msg object's _mh_msgnoGuido van Rossum2002-09-121-1/+12
* Fix an inaccuracy in the commentBarry Warsaw2002-08-261-2/+2
* Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)Raymond Hettinger2002-06-301-4/+2
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-041-1/+1
* Try /var/mail before trying /usr/mail. Most new systems use /var.Neil Schemenauer2002-03-241-1/+4
* Added PortableUnixMailbox to the __all__ variable, and in the __main__Barry Warsaw2002-03-011-2/+4
* SF bug #461073: mailbox __iter__ bug, by Andrew Dalke.Guido van Rossum2001-09-131-3/+3
* Remove redundant imports (PyChecker).Guido van Rossum2001-08-131-2/+0
* Make the Mailbox objects support iteration -- they already had theFred Drake2001-05-021-0/+9
* Get rid of the seek() method on the _Mailbox class. This was aGuido van Rossum2001-04-151-8/+0
* Two changes:Barry Warsaw2001-01-311-12/+43
* a few more modules get __all__Skip Montanaro2001-01-241-0/+2
* Update the code to better reflect recommended style:Fred Drake2000-12-121-1/+1
* Maildir.__init__(): Make sure self.boxes is set.Fred Drake2000-10-231-3/+3
* Add missing "s" from format string.Fred Drake2000-09-301-1/+1
* Maildir.__init__(): Use the correct filter for filenames, so that thisFred Drake2000-09-221-7/+4
* Detlef Lannert <lannert@uni-duesseldorf.de>:Fred Drake2000-09-141-2/+2
* Use built in function filter instead of doing it laboriously by hand.Sjoerd Mullender2000-08-111-5/+4
* Improve MHMailbox: messages are now sorted in numerical order.Guido van Rossum2000-08-101-3/+8
* Make tabnanny happy.Fred Drake2000-07-091-243/+242
* Since Thomas Wouters kept complaining that he wants access to the theGuido van Rossum2000-04-041-0/+3
* Untabify to pass the -tt test.Fred Drake2000-02-101-240/+240