summaryrefslogtreecommitdiffstats
path: root/Lib/mailbox.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Only set msg.fp to None when there are no extra arguments; if thereGuido van Rossum1999-12-141-1/+2
* Add readlines() to _Subfile class. Not clear who would need it, butGuido van Rossum1999-03-241-0/+13
* Patch by Mike Meyer:Guido van Rossum1998-12-231-4/+35
* Patch by Piet van Oostrum to avoid calculating with the result ofGuido van Rossum1998-07-201-6/+5
* The _fromlinepattern was a little too restrictive -- some sendmailsGuido van Rossum1998-07-021-1/+1
* In class _Subfile, make sure read(n) can't read beyond EOF. AlsoGuido van Rossum1998-06-171-2/+5
* UnixMailbox: don't be fooled by lines that begin with "From " butGuido van Rossum1998-04-031-6/+22
* A few lines were indented using spaces instead of tabs -- fix them.Guido van Rossum1998-03-261-37/+43
* Convert all remaining *simple* cases of regex usage to re usage.Guido van Rossum1997-10-221-3/+4
* Added BabylMailbox class by Fred Lundh (untested).Guido van Rossum1997-05-151-0/+20
* Improve getting the mailbox from the environment.Guido van Rossum1997-05-081-5/+5
* /usr/local/bin/python -> /usr/bin/env pythonGuido van Rossum1996-11-271-1/+1
* Revamped test case and updated doc string.Guido van Rossum1996-09-171-23/+41
* support 'whence' arg to seek()Guido van Rossum1996-01-251-2/+7
* Added class MHMailboxJack Jansen1995-10-231-5/+35
* Changes to use default argument values where possibleGuido van Rossum1994-05-061-8/+4
* Jack's module for parsing UNIX mailbox filesGuido van Rossum1994-04-281-0/+137