Re: [PATCH v4 13/16] add indexopts to notmuch python bindings.

2016-08-13 Thread David Bremner
Daniel Kahn Gillmor writes: > > +:param indexopts: a nomtuch.Indexopts object indicating custom > +options desired for indexing. > + typo >be added. > + spurious whitespace change? otherwise the patch looks fine. d

[PATCH v4 13/16] add indexopts to notmuch python bindings.

2016-07-08 Thread Daniel Kahn Gillmor
Make notmuch indexing options are not available in python as the notmuch.Indexopts class. Users can do something like: import notmuch d = notmuch.Database() indexopts = notmuch.Indexopts(try_decrypt=true) d.add_message(fname, indexopts=indexopts) --- bindings/python/notmuch/__init__.py |