Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix double word typos. | Raymond Hettinger | 2003-08-25 | 1 | -1/+1 |
| | |||||
* | Lots of markup cleanups to avoid warnings from the GNU info generation; | Fred Drake | 2003-07-16 | 1 | -2/+2 |
| | | | | these make sense even without that processing chain. | ||||
* | Accept Armin's documentation patch for SF bug #558179. | Fred Drake | 2002-10-09 | 1 | -5/+5 |
| | | | | Adjusted some markup to make the descriptions more consistent. | ||||
* | Add deprecation notices to the documentation to reflect recent additions to | Fred Drake | 2002-09-25 | 1 | -0/+5 |
| | | | | PEP 4. | ||||
* | Added references to the email package. | Fred Drake | 2002-08-06 | 1 | -2/+4 |
| | | | | Closes SF bug #586937. | ||||
* | Update docs for bool changes by Guido around April 6 | Neal Norwitz | 2002-04-09 | 1 | -2/+2 |
| | |||||
* | Fix minor typo reported in SF patch #497951. | Fred Drake | 2002-01-05 | 1 | -1/+1 |
| | |||||
* | Document the "unixfrom" attribute of the rfc822.Message class. | Fred Drake | 2001-09-06 | 1 | -1/+7 |
| | | | | Based on a patch by Skip Montanaro, this closes SF bug #458885. | ||||
* | Apply the new \mailheader macro where appropriate, and fix a few small | Fred Drake | 2001-08-03 | 1 | -16/+17 |
| | | | | markup inconsistencies. | ||||
* | Fix a couple of minor markup nits. | Fred Drake | 2001-07-17 | 1 | -5/+5 |
| | | | | | Footnotes should be added *after* punctuation, not before. (Yes, this should be merged with the descr branch. Sorry, Tim!) | ||||
* | Updated the documentation in several respects: | Barry Warsaw | 2001-07-16 | 1 | -14/+46 |
| | | | | | | | | | | | - This module, despite its name, now should conform to RFC 2822, the update to RFC 822. - This module doesn't just represent "email headers", but entire email messages. - Added documentation for other useful public functions such as quote(), unquote(), praseaddr(), and dump_address_pair(). | ||||
* | One more update related to the new get() and setdefault() methods on the | Fred Drake | 2001-05-22 | 1 | -5/+6 |
| | | | | Message object. | ||||
* | Update to add get() and setdefault() as supported mapping operations, and | Fred Drake | 2001-05-22 | 1 | -2/+8 |
| | | | | | add a list of the mapping methods which are not supported (per Barry's comments). | ||||
* | Add some clarifications about the mapping interface presented by | Fred Drake | 2001-05-22 | 1 | -2/+4 |
| | | | | rfc822.Message objects, based on comments from Barry. | ||||
* | Fix a number of bugs and omissions in the AddressList documentation, most | Fred Drake | 2001-04-09 | 1 | -10/+23 |
| | | | | | | | noted by Steve Holden. This closes SF bug #413876. | ||||
* | Emphasis that instantiating this class doesn't consume the message body. | Eric S. Raymond | 2001-01-27 | 1 | -3/+3 |
| | | | | Fix some unclear language in the description of the addrlist member. | ||||
* | add cross reference to mimetools module | Skip Montanaro | 2000-09-15 | 1 | -0/+2 |
| | |||||
* | Merged changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -7/+18 |
| | | | | (Very rough.) | ||||
* | Fix typo reported by Robert Kern <kernr@ncifcrf.gov>. | Fred Drake | 1999-06-10 | 1 | -5/+5 |
| | |||||
* | Use \rfc to mark some remaining RFC references. | Fred Drake | 1999-04-28 | 1 | -12/+10 |
| | | | | | | | | | Remove comment about full name bug in getaddrlist(); this has been fixed for a while now. Work around LaTeX2HTML space-dropping bug. Mention that the fp attribute can be used to read the message body. | ||||
* | Make internal module references hyperlinks wherever it makes sense. | Fred Drake | 1999-04-22 | 1 | -3/+3 |
| | |||||
* | for method getaddrlist(): Added a note clarifying that all named | Barry Warsaw | 1999-01-14 | 1 | -0/+4 |
| | | | | headers and their continuation lines are parsed. | ||||
* | New section header style. | Fred Drake | 1998-08-10 | 1 | -1/+2 |
| | | | | Fix up a few synopses. | ||||
* | Some logical markup, some nits. | Fred Drake | 1998-08-10 | 1 | -25/+26 |
| | |||||
* | Adjusted to use the new module synopsis support macros. | Fred Drake | 1998-07-23 | 1 | -2/+4 |
| | |||||
* | Some extra notes, and describe a new class (AddressList), all by ESR. | Guido van Rossum | 1998-06-16 | 1 | -2/+44 |
| | |||||
* | Eric Raymond: added doc for isheader(); improved docs for constructor. | Guido van Rossum | 1998-06-11 | 1 | -7/+18 |
| | |||||
* | Document the changes I just checked in. | Guido van Rossum | 1998-06-10 | 1 | -8/+39 |
| | |||||
* | Remove all uses of \sectcode; we can now use logical markup everywhere. | Fred Drake | 1998-04-04 | 1 | -1/+1 |
| | |||||
* | Fixed description of similarity between m[name] and m.getheader(name), | Fred Drake | 1998-04-04 | 1 | -24/+26 |
| | | | | | | reported by Samuel L. Bayer. Use methoddesc instead of funcdesc, etc. | ||||
* | Logical markup. | Fred Drake | 1998-03-14 | 1 | -51/+54 |
| | | | | | Wrap general Message class description in a {classdesc} instead of nothing at all. | ||||
* | Feature added by Bill van Melle: when no timezone is present, assume | Guido van Rossum | 1998-02-19 | 1 | -1/+3 |
| | | | | local time -- that's better than failure. | ||||
* | Consistent spelling: "time zone" -> "timezone". | Guido van Rossum | 1998-02-18 | 1 | -3/+6 |
| | | | | | Clarify that the sign of the timezone offset returned by parsedate_tz() is the opposite of time.timezone. | ||||
* | Add mktime_tz(). Add () to a function reference in parsedate_tz(). | Guido van Rossum | 1998-02-18 | 1 | -1/+9 |
| | |||||
* | Remove all \bcode / \ecode cruft; this is no longer needed. See previous | Fred Drake | 1998-02-13 | 1 | -1/+1 |
| | | | | | | | | | checkin of myformat.sty. Change "\renewcommand{\indexsubitem}{(...)}" to "\setindexsubitem{(...)}" everywhere. Some other minor nits that I happened to come across. | ||||
* | Use the new RFC macros wherever RFCs are referenced by number. No other | Fred Drake | 1998-02-09 | 1 | -5/+4 |
| | | | | changes. | ||||
* | Index the RFC822 reference (some other RFC references were alreaddy indexed). | Fred Drake | 1997-12-16 | 1 | -2/+4 |
| | | | | | Add index reference to mailbox module; also remove comment that it's undocumented (it has been). | ||||
* | AMK's megapatch: | Guido van Rossum | 1997-07-17 | 1 | -0/+1 |
| | | | | | | | * \bcode, \ecode added everywhere * \label{module-foo} added everywhere * A few \seealso sections added. * Indentation fixed inside verbatim in lib*tex files | ||||
* | Mention seekable parameter (AMK). | Guido van Rossum | 1997-06-02 | 1 | -2/+7 |
| | | | | Added pointer to mailbox module. | ||||
* | Added descriptions of parsedate(), parsedate_tz(), getdate_tz() | Guido van Rossum | 1996-12-06 | 1 | -0/+28 |
| | | | | (all contributed by Andrew Kuchling). | ||||
* | restructured library manual accordiung to functional group | Guido van Rossum | 1995-03-28 | 1 | -0/+2 |
| | |||||
* | mass changes; fix titles; add examples; correct typos; clarifications; | Guido van Rossum | 1995-03-17 | 1 | -5/+5 |
| | | | | unified style; etc. | ||||
* | changes (suggested) by Soren Larsen | Guido van Rossum | 1995-03-07 | 1 | -5/+5 |
| | |||||
* | a few typographical changes (e.g. -- => ---) and lots of new stuff in the ↵ | Guido van Rossum | 1995-02-28 | 1 | -0/+2 |
| | | | | WWW chapter | ||||
* | added WWW sections | Guido van Rossum | 1995-02-27 | 1 | -0/+108 |