summaryrefslogtreecommitdiff
path: root/Lib/rfc822.py
Commit message (Expand)AuthorAgeFilesLines
* fix test_py3kwarnsBenjamin Peterson2008-07-141-1/+2
* add py3k warnings to rfc822Benjamin Peterson2008-06-121-0/+3
* Bug #1249573: fix rfc822.parsedate not accepting a certain date formatGeorg Brandl2007-01-221-0/+5
* Port forward from 2.4 branch:Barry Warsaw2006-05-011-0/+1
* Convert splitlines to for-loop (handles case where input does not have a trai...Raymond Hettinger2005-02-081-4/+4
* Wholistic code cleanup / modernization:Raymond Hettinger2005-02-081-75/+63
* Bug #1030125: rfc822 __iter__ problemRaymond Hettinger2004-09-221-0/+3
* Resolution of bug #997368, "strftime() backward compatibility".Barry Warsaw2004-08-071-1/+1
* Make Message.__str__ more efficient.Neil Schemenauer2003-11-111-4/+1
* Implement and apply PEP 322, reverse iterationRaymond Hettinger2003-11-061-2/+1
* unquote(): Didn't properly de-backslash-ify. This patch (adapted fromBarry Warsaw2002-09-111-3/+3
* Whitespace normalization.Tim Peters2002-07-161-1/+1
* SF bug 558179.Guido van Rossum2002-06-051-7/+0
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-7/+11
* parseaddr(): Fixed in the same way that Message.getaddrlist() wasBarry Warsaw2002-05-231-1/+1
* Message.getaddrlist(): Use the AddressList.addresslist attributeBarry Warsaw2002-05-211-1/+1
* AddrlistClass -> AddressListBarry Warsaw2002-04-121-2/+2
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-071-1/+1
* SF patch #495358 (Artur Zaprzala): rfc822.AddressList and "<>" addressGuido van Rossum2001-12-201-1/+1
* Fix for bug #481221, getaddrlist() failing on long addresses.Barry Warsaw2001-11-131-4/+8
* parsedate_tz(): If data is false, return None. Fixes bug #478115,Barry Warsaw2001-11-131-0/+2
* The first batch of changes recommended by the fixdiv tool. These areGuido van Rossum2001-09-041-1/+1
* Whitespace normalization.Tim Peters2001-09-041-1/+1
* Add content-type header to ftp URLs (SF patch #454553)Jeremy Hylton2001-08-271-2/+12
* Remove unused variable (PyChecker)Andrew M. Kuchling2001-08-131-1/+0
* Stoopid change, just to mention that the last checkin resolves SF bugBarry Warsaw2001-07-161-1/+1
* Fix address parsing to be RFC 2822 conformant. Specifically, dots areBarry Warsaw2001-07-161-105/+123
* Clean up a bare except: clause.unknown2001-07-041-1/+1
* Per discussion with Barry, make the default value for both get() andFred Drake2001-05-221-5/+4
* Added .get() and .setdefault() support to rfc822.Message.Fred Drake2001-05-221-0/+20
* bunch more __all__ listsSkip Montanaro2001-02-151-0/+1
* Whitespace normalization.Tim Peters2001-01-151-83/+83
* Duh. Instead of string.whitespace and string.digits, use isspace()Guido van Rossum2001-01-021-6/+5
* Get rid of string functions. References to string.whitespace,Guido van Rossum2000-12-151-63/+57
* Implement the suggestion of bug_id=122070: surround tell() call withGuido van Rossum2000-11-091-1/+5
* AddrlistClass.getdomainliteral(): rfc822 requires that the domainBarry Warsaw2000-09-251-1/+1
* Support for augmented assignment in the UserList, UserDict, UserString andThomas Wouters2000-08-241-0/+14
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* Untabify to pass the -tt test.Fred Drake2000-02-101-11/+11
* Fix by Nick Russo in processing of timezone in test program; theGuido van Rossum2000-01-171-2/+4
* Fix PR#3, submitted by Skip Montanaro: if no space appears after theGuido van Rossum1999-10-061-1/+1
* After much hemming and hawing, we decided to roll back Fred's change.Guido van Rossum1999-09-151-5/+5
* Message.__delitem__(): If the key doesn't exist in the dictionary,Fred Drake1999-09-101-5/+5
* Correct typo in AddressList.__getitem__. By Moshe Zadka.Guido van Rossum1999-09-031-1/+1
* AddrlistClass.getaddress(): when parsing `:'s, in the loop, watch outBarry Warsaw1999-07-121-1/+2
* Barry Scott writes:Guido van Rossum1999-06-151-1/+1
* Message.getheaders(): If there are no matching headers, return anFred Drake1999-06-141-2/+3
* Mike Meyer reports a bug in his patch (several months ago) thatGuido van Rossum1999-04-291-0/+1
* Message.getheader(): Fixed grammatical error in docstring.Fred Drake1999-04-281-1/+26
* Utility function that yields a properly formatted time string.Guido van Rossum1999-04-191-0/+10