1. 0de6580 bunch more __all__ lists by Skip Montanaro · 23 years ago
  2. 0c9886d Whitespace normalization. by Tim Peters · 24 years ago
  3. 352ca8c Duh. Instead of string.whitespace and string.digits, use isspace() by Guido van Rossum · 24 years ago
  4. c80f182 Get rid of string functions. References to string.whitespace, by Guido van Rossum · 24 years ago
  5. a66eed6 Implement the suggestion of bug_id=122070: surround tell() call with try/except. by Guido van Rossum · 24 years ago
  6. 2ea2b11 AddrlistClass.getdomainliteral(): rfc822 requires that the domain by Barry Warsaw · 24 years ago
  7. 104a7bc Support for augmented assignment in the UserList, UserDict, UserString and by Thomas Wouters · 24 years ago
  8. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  9. 13a2c27 Untabify to pass the -tt test. by Fred Drake · 24 years ago
  10. 1d2b23e Fix by Nick Russo in processing of timezone in test program; the by Guido van Rossum · 25 years ago
  11. d8957d6 Fix PR#3, submitted by Skip Montanaro: if no space appears after the by Guido van Rossum · 25 years ago
  12. f3c5f5c After much hemming and hawing, we decided to roll back Fred's change. by Guido van Rossum · 25 years ago
  13. 81ffe75 Message.__delitem__(): If the key doesn't exist in the dictionary, by Fred Drake · 25 years ago
  14. a07934e Correct typo in AddressList.__getitem__. By Moshe Zadka. by Guido van Rossum · 25 years ago
  15. 96e9bf4 AddrlistClass.getaddress(): when parsing `:'s, in the loop, watch out by Barry Warsaw · 25 years ago
  16. b184487 Barry Scott writes: by Guido van Rossum · 25 years ago
  17. cbfa5cb Message.getheaders(): If there are no matching headers, return an by Fred Drake · 25 years ago
  18. b08f51b Mike Meyer reports a bug in his patch (several months ago) that by Guido van Rossum · 25 years ago
  19. ddf22c4 Message.getheader(): Fixed grammatical error in docstring. by Fred Drake · 25 years ago
  20. 247a78a Utility function that yields a properly formatted time string. by Guido van Rossum · 25 years ago
  21. 8a57843 Message.getaddrlist(): This now handles multiple occurances of the by Barry Warsaw · 26 years ago
  22. db01ee0 Patch by Mike Meyer: by Guido van Rossum · 26 years ago
  23. 99e1131 Avoid crash in parsedate_tz() on certain invalid dates -- when the by Guido van Rossum · 26 years ago
  24. 052969a Don't use calculations on values gotten from tell(). Also use a by Guido van Rossum · 26 years ago
  25. 5430b43 Bugfix to ESR's code reported by himself: should use hasattr() to test by Guido van Rossum · 26 years ago
  26. 81d10b4 Add __getitem__ to AddressList object, to make it a sequence. by Guido van Rossum · 26 years ago
  27. 4d4ab92 Some extra comments and docstrings, and a new class (AddressList), all by ESR. by Guido van Rossum · 26 years ago
  28. e894fc0 Support new overridable method, isheader() (ESR). by Guido van Rossum · 26 years ago
  29. c7bb857 Some changes suggested/provided by Eric Raymond: by Guido van Rossum · 26 years ago
  30. 67133e2 Neatify the _timezones table and remove a misleading comment about by Guido van Rossum · 26 years ago
  31. 75d92c1 Added a __delitem__ to the Message class. by Guido van Rossum · 26 years ago
  32. 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  33. 9e43adb Initialize adlist variable in getrouteaddr(), so an illegal address by Guido van Rossum · 26 years ago
  34. a73033f Feature added by Bill van Melle: when no timezone is present, assume by Guido van Rossum · 26 years ago
  35. 00455b7 Fix sign reversal in mktime_tz discovered by Bill van Melle. by Guido van Rossum · 26 years ago
  36. 9e32666 Remove unneeded "import re". by Guido van Rossum · 27 years ago
  37. 9ab94c1 Doc strings and reformatting with 4 spaces bty Mitch Chapman. by Guido van Rossum · 27 years ago
  38. be7c45e New address parser by Ben Escoto replaces Sjoerd Mullender's parseaddr() by Guido van Rossum · 27 years ago
  39. 9694fca Convert all remaining *simple* cases of regex usage to re usage. by Guido van Rossum · 27 years ago
  40. 7883e1d Entirely rewritten parseaddr() function by Sjoerd Mullender. by Guido van Rossum · 27 years ago
  41. 9a876a4 Tweaks by Lars Wirzenius to parse some more forms of illegal dates: by Guido van Rossum · 27 years ago
  42. c17a268 Added support for RFC 850 style dates, as used by some HTTP servers by Guido van Rossum · 28 years ago
  43. 6cdd7a0 Add mktime_tz() which turns a date_tz 10-tuple into a standard Unix timestamp. by Guido van Rossum · 28 years ago
  44. 27cb8a4 Added support for timezone in date field. getdate_tz() and by Guido van Rossum · 28 years ago
  45. 3534a89 New, improved parseaddr() by Sjoerd. by Guido van Rossum · 28 years ago
  46. a13edb4 optimization of getheader() using a dictionary by Guido van Rossum · 28 years ago
  47. 92457b9 added seekable option; save unix from lines; speed up islast() by Guido van Rossum · 29 years ago
  48. e5e2cdd Removed >From stuff by Jack Jansen · 29 years ago
  49. 3a15dca Skip old-style 'From name time' lines at beginning of message. by Jack Jansen · 29 years ago
  50. 8534741 mhlib.py: delay opening of sequences file so we don't overwrite it when by Guido van Rossum · 30 years ago
  51. 3f9a6ec * Lib/rfc822.py: fix two bugs: error in readheaders interpreting by Guido van Rossum · 30 years ago
  52. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  53. 7bc817d * Mass change: get rid of all init() methods, in favor of __init__() by Guido van Rossum · 31 years ago
  54. 01ca336 New modules mimetools and rfc822. by Guido van Rossum · 32 years ago