From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Fri, 10 Feb 2012 21:37:47 +0000 (+0100) Subject: Turn the python example into a doctest that works on python 2 and 3 X-Git-Url: https://git.cworth.org/git?p=notmuch-wiki;a=commitdiff_plain;h=c5b553374e24e522b3e96d7ca509026b3e0b5798 Turn the python example into a doctest that works on python 2 and 3 Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de> --- diff --git a/howto.mdwn b/howto.mdwn index acd0173..ab5f20d 100644 --- a/howto.mdwn +++ b/howto.mdwn @@ -39,13 +39,11 @@ various "third party" notmuch utilities. environment variable to point to the .../bindings/python directory), this script will print the filenames of a matching search: - #!/usr/bin/env python - import sys - import notmuch - search = " ".join(sys.argv[1:]) - q = notmuch.Database().create_query(search) - for m in q.search_messages(): - print m.get_filename() + >>> import notmuch + >>> db = notmuch.Database() + >>> query = db.create_query('tag:inbox AND NOT tag:killed') + >>> list(query.search_messages()) # doctest:+ELLIPSIS + [...] * **Sync notmuch tags and maildir flags**