~ubuntu-branches/ubuntu/lucid/python2.6/lucid

« back to all changes in this revision

Viewing changes to Doc/library/mailbox.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-03-11 13:30:19 UTC
  • mto: (10.1.13 sid)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20100311133019-sblbooa3uqrkoe70
Tags: upstream-2.6.5~rc2
ImportĀ upstreamĀ versionĀ 2.6.5~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
602
602
   `nmh - Message Handling System <http://www.nongnu.org/nmh/>`_
603
603
      Home page of :program:`nmh`, an updated version of the original :program:`mh`.
604
604
 
605
 
   `MH & nmh: Email for Users & Programmers <http://www.ics.uci.edu/~mh/book/>`_
 
605
   `MH & nmh: Email for Users & Programmers <http://rand-mh.sourceforge.net/book/>`_
606
606
      A GPL-licensed book on :program:`mh` and :program:`nmh`, with some information
607
607
      on the mailbox format.
608
608
 
1530
1530
 
1531
1531
Most of the older mailbox classes have names that differ from the current
1532
1532
mailbox class names, except for :class:`Maildir`. For this reason, the new
1533
 
:class:`Maildir` class defines a :meth:`next` method and its constructor differs
 
1533
:class:`Maildir` class defines a :meth:`!next` method and its constructor differs
1534
1534
slightly from those of the other new mailbox classes.
1535
1535
 
1536
1536
The older mailbox classes whose names are not the same as their newer
1543
1543
   single file and separated by ``From`` (a.k.a. ``From_``) lines.  The file object
1544
1544
   *fp* points to the mailbox file.  The optional *factory* parameter is a callable
1545
1545
   that should create new message objects.  *factory* is called with one argument,
1546
 
   *fp* by the :meth:`next` method of the mailbox object.  The default is the
 
1546
   *fp* by the :meth:`!next` method of the mailbox object.  The default is the
1547
1547
   :class:`rfc822.Message` class (see the :mod:`rfc822` module -- and the note
1548
1548
   below).
1549
1549