Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
   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
+      [...]
 
 * <span id="sync_maildir_flags">**Sync notmuch tags and maildir flags**</span>