]> git.notmuchmail.org Git - notmuch/commitdiff
python: Fix message ID docstring
authorFloris Bruynooghe <flub@devork.be>
Mon, 24 Feb 2025 20:08:19 +0000 (21:08 +0100)
committerDavid Bremner <david@tethera.net>
Fri, 28 Feb 2025 15:31:55 +0000 (11:31 -0400)
The messageidb attribute does not exist.  The returned BinString type
already allows use as both strings and binary.  Presumably this was
written before that type was adopted.

bindings/python-cffi/notmuch2/_message.py

index 4c19607460553dfb270ff9defc8bed24a30804d4..f4c7ef0217032fa0d27a64a5718faa305de60519 100644 (file)
@@ -80,12 +80,6 @@ class Message(base.NotmuchObject):
     def messageid(self):
         """The message ID as a string.
 
-        The message ID is decoded with the ignore error handler.  This
-        is fine as long as the message ID is well formed.  If it is
-        not valid ASCII then this will be lossy.  So if you need to be
-        able to write the exact same message ID back you should use
-        :attr:`messageidb`.
-
         Note that notmuch will decode the message ID value and thus
         strip off the surrounding ``<`` and ``>`` characters.  This is
         different from Python's :mod:`email` package behaviour which