Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | a few more modules get __all__ | Skip Montanaro | 2001-01-24 | 1 | -0/+2 |
| | |||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -1/+1 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | Maildir.__init__(): Make sure self.boxes is set. | Fred Drake | 2000-10-23 | 1 | -3/+3 |
| | | | | This closes SourceForge bug #117490. | ||||
* | Add missing "s" from format string. | Fred Drake | 2000-09-30 | 1 | -1/+1 |
| | | | | This closes SourceForge patch #101714. | ||||
* | Maildir.__init__(): Use the correct filter for filenames, so that this | Fred Drake | 2000-09-22 | 1 | -7/+4 |
| | | | | class conforms to the maildir specification. | ||||
* | Detlef Lannert <lannert@uni-duesseldorf.de>: | Fred Drake | 2000-09-14 | 1 | -2/+2 |
| | | | | | | | | | | | | | mailbox.py (from the CVS tree) doesn't work with qmail Maildirs: Filenames are completed when the directories are scanned, and the directory name is prepended again in the next() method. Another suggestion: Change the print statement in the _test() driver to show two more date characters (probably the length has increased due to the recent Y2K hype ;). Now it shows the complete date, including the seconds -- at least for me. (I've also made the sender field left justified, in case it is ever shorter than the field width). | ||||
* | Use built in function filter instead of doing it laboriously by hand. | Sjoerd Mullender | 2000-08-11 | 1 | -5/+4 |
| | |||||
* | Improve MHMailbox: messages are now sorted in numerical order. | Guido van Rossum | 2000-08-10 | 1 | -3/+8 |
| | | | | Also don't allow leading zeros in message numbers. | ||||
* | Make tabnanny happy. | Fred Drake | 2000-07-09 | 1 | -243/+242 |
| | | | | mailbox.py: Convert to 4-space indents. | ||||
* | Since Thomas Wouters kept complaining that he wants access to the the | Guido van Rossum | 2000-04-04 | 1 | -0/+3 |
| | | | | | | | | Unix From lines, change the UnixMailbox class so that _search_start() positions the file *before* the Unix From line instead of after it; change _search_end() to skip one line before looking for the next From line. The rfc822.Message class automatically recognizes these Unix From lines and squirrels them away in the 'unixfrom' instance variable. | ||||
* | Untabify to pass the -tt test. | Fred Drake | 2000-02-10 | 1 | -240/+240 |
| | |||||
* | Only set msg.fp to None when there are no extra arguments; if there | Guido van Rossum | 1999-12-14 | 1 | -1/+2 |
| | | | | are, we must keep the file around so we can print the body. | ||||
* | Add readlines() to _Subfile class. Not clear who would need it, but | Guido van Rossum | 1999-03-24 | 1 | -0/+13 |
| | | | | | Chris Lawrence sent me a broken version; this one is a tad simpler and more conforming to the standard. | ||||
* | Patch by Mike Meyer: | Guido van Rossum | 1998-12-23 | 1 | -4/+35 |
| | | | | | Add a class to mailbox.py for dealing with qmail directory mailboxes. The test code was extended to notice these being used as well. | ||||
* | Patch by Piet van Oostrum to avoid calculating with the result of | Guido van Rossum | 1998-07-20 | 1 | -6/+5 |
| | | | | | | | fp.tell() -- that won't work on Windows. (A patch for rfc822 is still needed for one case where it finds a bad header line and wants to back up.) | ||||
* | The _fromlinepattern was a little too restrictive -- some sendmails | Guido van Rossum | 1998-07-02 | 1 | -1/+1 |
| | | | | don't put the seconds in the time! | ||||
* | In class _Subfile, make sure read(n) can't read beyond EOF. Also | Guido van Rossum | 1998-06-17 | 1 | -2/+5 |
| | | | | | allow negative numbers to specify read until EOF (like for a regular file's read() method). | ||||
* | UnixMailbox: don't be fooled by lines that begin with "From " but | Guido van Rossum | 1998-04-03 | 1 | -6/+22 |
| | | | | | otherwise don't look like headers at all... Also robustify the test code a bit. | ||||
* | A few lines were indented using spaces instead of tabs -- fix them. | Guido van Rossum | 1998-03-26 | 1 | -37/+43 |
| | |||||
* | Convert all remaining *simple* cases of regex usage to re usage. | Guido van Rossum | 1997-10-22 | 1 | -3/+4 |
| | |||||
* | Added BabylMailbox class by Fred Lundh (untested). | Guido van Rossum | 1997-05-15 | 1 | -0/+20 |
| | |||||
* | Improve getting the mailbox from the environment. | Guido van Rossum | 1997-05-08 | 1 | -5/+5 |
| | |||||
* | /usr/local/bin/python -> /usr/bin/env python | Guido van Rossum | 1996-11-27 | 1 | -1/+1 |
| | |||||
* | Revamped test case and updated doc string. | Guido van Rossum | 1996-09-17 | 1 | -23/+41 |
| | |||||
* | support 'whence' arg to seek() | Guido van Rossum | 1996-01-25 | 1 | -2/+7 |
| | |||||
* | Added class MHMailbox | Jack Jansen | 1995-10-23 | 1 | -5/+35 |
| | | | | Added optional third parameter to seek. | ||||
* | Changes to use default argument values where possible | Guido van Rossum | 1994-05-06 | 1 | -8/+4 |
| | |||||
* | Jack's module for parsing UNIX mailbox files | Guido van Rossum | 1994-04-28 | 1 | -0/+137 |