mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
python: deprecate Messages.{format,print}_messages
This code adds functionality at the python level that is unlikely to be useful for anyone. Furthermore the python bindings strive to be a thin wrapper around libnotmuch, so this code will be removed in notmuch 0.15. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
This commit is contained in:
parent
892bb1ee6d
commit
8c123d0da6
1 changed files with 14 additions and 0 deletions
|
@ -199,6 +199,13 @@ class Messages(object):
|
|||
:param entire_thread: A bool, indicating whether we want to output
|
||||
whole threads or only the matching messages.
|
||||
:return: a list of lines
|
||||
|
||||
.. deprecated:: 0.14
|
||||
This code adds functionality at the python
|
||||
level that is unlikely to be useful for
|
||||
anyone. Furthermore the python bindings strive
|
||||
to be a thin wrapper around libnotmuch, so
|
||||
this code will be removed in notmuch 0.15.
|
||||
"""
|
||||
result = list()
|
||||
|
||||
|
@ -255,6 +262,13 @@ class Messages(object):
|
|||
:param indent: A number indicating the reply depth of these messages.
|
||||
:param entire_thread: A bool, indicating whether we want to output
|
||||
whole threads or only the matching messages.
|
||||
|
||||
.. deprecated:: 0.14
|
||||
This code adds functionality at the python
|
||||
level that is unlikely to be useful for
|
||||
anyone. Furthermore the python bindings strive
|
||||
to be a thin wrapper around libnotmuch, so
|
||||
this code will be removed in notmuch 0.15.
|
||||
"""
|
||||
handle.write(''.join(self.format_messages(format, indent, entire_thread)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue