8000 gh-90890: Reorder mailbox.Maildir method documentation by gildea · Pull Request #113071 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-90890: Reorder mailbox.Maildir method documentation #113071

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Dec 14, 2023
Prev Previous commit
Next Next commit
versionadded 3.13
  • Loading branch information
gpshead authored Nov 11, 2023
commit 9dd04e75630a2cbcb6845680ad02b880db7a5737
12 changes: 6 additions & 6 deletions Doc/library/mailbox.rst
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
methods are not reflected here until the mailbox's
:meth:`__setitem__` method is called.

.. versionadded:: 3.12
.. versionadded:: 3.13


.. method:: set_flags(key, flags)
Expand All @@ -460,7 +460,7 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
changes made with this mailbox method will not be visible to the
message object's method, :meth:`~MaildirMessage.get_flags`.

.. versionadded:: 3.12
.. versionadded:: 3.13


.. method:: add_flag(key, flag)
Expand All @@ -473,7 +473,7 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
:meth:`~MaildirMessage.add_flag` method are similar to
those for :meth:`set_flags`; see the discussion there.

.. versionadded:: 3.12
.. versionadded:: 3.13


.. method:: remove_flag(key, flag)
8EC0 Expand All @@ -486,7 +486,7 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
:meth:`~MaildirMessage.remove_flag` method are similar to
those for :meth:`set_flags`; see the discussion there.

.. versionadded:: 3.12
.. versionadded:: 3.13


.. method:: get_info(key)
Expand All @@ -504,7 +504,7 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
are not reflected here until the mailbox's :meth:`__setitem__` method
is called.

.. versionadded:: 3.12
.. versionadded:: 3.13


.. method:: set_info(key, info)
Expand All @@ -523,7 +523,7 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
changes made with this mailbox method will not be visible to the
message object's method, :meth:`~MaildirMessage.get_info`.

.. versionadded:: 3.12
.. versionadded:: 3.13


.. seealso::
Expand Down
0