| Commit message (Expand) | Author | Age | Files | Lines |
* | Whitespace normalization. | Tim Peters | 2001-01-15 | 1 | -83/+83 |
|
|
* | Duh. Instead of string.whitespace and string.digits, use isspace() | Guido van Rossum | 2001-01-02 | 1 | -6/+5 |
|
|
* | Get rid of string functions. References to string.whitespace, | Guido van Rossum | 2000-12-15 | 1 | -63/+57 |
|
|
* | Implement the suggestion of bug_id=122070: surround tell() call with | Guido van Rossum | 2000-11-09 | 1 | -1/+5 |
|
|
* | AddrlistClass.getdomainliteral(): rfc822 requires that the domain | Barry Warsaw | 2000-09-25 | 1 | -1/+1 |
|
|
* | Support for augmented assignment in the UserList, UserDict, UserString and | Thomas Wouters | 2000-08-24 | 1 | -0/+14 |
|
|
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
|
|
* | Untabify to pass the -tt test. | Fred Drake | 2000-02-10 | 1 | -11/+11 |
|
|
* | Fix by Nick Russo in processing of timezone in test program; the | Guido van Rossum | 2000-01-17 | 1 | -2/+4 |
|
|
* | Fix PR#3, submitted by Skip Montanaro: if no space appears after the | Guido van Rossum | 1999-10-06 | 1 | -1/+1 |
|
|
* | After much hemming and hawing, we decided to roll back Fred's change. | Guido van Rossum | 1999-09-15 | 1 | -5/+5 |
|
|
* | Message.__delitem__(): If the key doesn't exist in the dictionary, | Fred Drake | 1999-09-10 | 1 | -5/+5 |
|
|
* | Correct typo in AddressList.__getitem__. By Moshe Zadka. | Guido van Rossum | 1999-09-03 | 1 | -1/+1 |
|
|
* | AddrlistClass.getaddress(): when parsing `:'s, in the loop, watch out | Barry Warsaw | 1999-07-12 | 1 | -1/+2 |
|
|
* | Barry Scott writes: | Guido van Rossum | 1999-06-15 | 1 | -1/+1 |
|
|
* | Message.getheaders(): If there are no matching headers, return an | Fred Drake | 1999-06-14 | 1 | -2/+3 |
|
|
* | Mike Meyer reports a bug in his patch (several months ago) that | Guido van Rossum | 1999-04-29 | 1 | -0/+1 |
|
|
* | Message.getheader(): Fixed grammatical error in docstring. | Fred Drake | 1999-04-28 | 1 | -1/+26 |
|
|
* | Utility function that yields a properly formatted time string. | Guido van Rossum | 1999-04-19 | 1 | -0/+10 |
|
|
* | Message.getaddrlist(): This now handles multiple occurances of the | Barry Warsaw | 1999-01-14 | 1 | -12/+21 |
|
|
* | Patch by Mike Meyer: | Guido van Rossum | 1998-12-23 | 1 | -5/+19 |
|
|
* | Avoid crash in parsedate_tz() on certain invalid dates -- when the | Guido van Rossum | 1998-12-23 | 1 | -1/+3 |
|
|
* | Don't use calculations on values gotten from tell(). Also use a | Guido van Rossum | 1998-07-21 | 1 | -4/+11 |
|
|
* | Bugfix to ESR's code reported by himself: should use hasattr() to test | Guido van Rossum | 1998-06-22 | 1 | -1/+1 |
|
|
* | Add __getitem__ to AddressList object, to make it a sequence. | Guido van Rossum | 1998-06-16 | 1 | -0/+4 |
|
|
* | Some extra comments and docstrings, and a new class (AddressList), all by ESR. | Guido van Rossum | 1998-06-16 | 1 | -1/+48 |
|
|
* | Support new overridable method, isheader() (ESR). | Guido van Rossum | 1998-06-11 | 1 | -24/+48 |
|
|
* | Some changes suggested/provided by Eric Raymond: | Guido van Rossum | 1998-06-10 | 1 | -7/+52 |
|
|
* | Neatify the _timezones table and remove a misleading comment about | Guido van Rossum | 1998-05-18 | 1 | -12/+5 |
|
|
* | Added a __delitem__ to the Message class. | Guido van Rossum | 1998-04-02 | 1 | -0/+22 |
|
|
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -17/+17 |
|
|
* | Initialize adlist variable in getrouteaddr(), so an illegal address | Guido van Rossum | 1998-03-03 | 1 | -0/+1 |
|
|
* | Feature added by Bill van Melle: when no timezone is present, assume | Guido van Rossum | 1998-02-19 | 1 | -7/+14 |
|
|
* | Fix sign reversal in mktime_tz discovered by Bill van Melle. | Guido van Rossum | 1998-02-18 | 1 | -1/+1 |
|
|
* | Remove unneeded "import re". | Guido van Rossum | 1997-12-11 | 1 | -1/+0 |
|
|
* | Doc strings and reformatting with 4 spaces bty Mitch Chapman. | Guido van Rossum | 1997-12-10 | 1 | -609/+661 |
|
|
* | New address parser by Ben Escoto replaces | Guido van Rossum | 1997-11-22 | 1 | -125/+247 |
|
|
* | Convert all remaining *simple* cases of regex usage to re usage. | Guido van Rossum | 1997-10-22 | 1 | -5/+4 |
|
|
* | Entirely rewritten parseaddr() function by Sjoerd Mullender. | Guido van Rossum | 1997-09-15 | 1 | -53/+92 |
|
|
* | Tweaks by Lars Wirzenius to parse some more forms of illegal dates: | Guido van Rossum | 1997-07-25 | 1 | -2/+5 |
|
|
* | Added support for RFC 850 style dates, as used by some HTTP servers | Guido van Rossum | 1996-12-27 | 1 | -0/+4 |
|
|
* | Add mktime_tz() which turns a date_tz 10-tuple into a standard Unix timestamp. | Guido van Rossum | 1996-12-12 | 1 | -0/+11 |
|
|
* | Added support for timezone in date field. getdate_tz() and | Guido van Rossum | 1996-11-20 | 1 | -6/+57 |
|
|
* | New, improved parseaddr() by Sjoerd. | Guido van Rossum | 1996-07-30 | 1 | -30/+83 |
|
|
* | optimization of getheader() using a dictionary | Guido van Rossum | 1996-05-28 | 1 | -45/+33 |
|
|
* | added seekable option; save unix from lines; speed up islast() | Guido van Rossum | 1995-06-22 | 1 | -12/+24 |
|
|
* | Removed >From stuff | Jack Jansen | 1995-06-16 | 1 | -2/+1 |
|
|
* | Skip old-style 'From name time' lines at beginning of message. | Jack Jansen | 1995-06-13 | 1 | -0/+6 |
|
|
* | mhlib.py: delay opening of sequences file so we don't overwrite it when | Guido van Rossum | 1994-09-09 | 1 | -1/+8 |
|
|
* | * Lib/rfc822.py: fix two bugs: error in readheaders interpreting | Guido van Rossum | 1994-08-12 | 1 | -5/+5 |
|
|