<feed xmlns='http://www.w3.org/2005/Atom'>
<title>notmuch/bindings/python, branch debian/0.13_rc1-2</title>
<subtitle>thread-based email index, search, and tagging</subtitle>
<id>https://git.notmuchmail.org/git/notmuch/atom?h=debian%2F0.13_rc1-2</id>
<link rel='self' href='https://git.notmuchmail.org/git/notmuch/atom?h=debian%2F0.13_rc1-2'/>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/'/>
<updated>2012-05-08T17:49:08Z</updated>
<entry>
<title>bump version to 0.13~rc1</title>
<updated>2012-05-08T17:49:08Z</updated>
<author>
<name>David Bremner</name>
<email>bremner@debian.org</email>
</author>
<published>2012-05-08T17:49:08Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=a4b10675bfe6ee90d84b9880b59c4f5ff15eed3a'/>
<id>urn:sha1:a4b10675bfe6ee90d84b9880b59c4f5ff15eed3a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>lib: Bump SO version from 2.0.0 to 3.0.0</title>
<updated>2012-05-05T23:06:09Z</updated>
<author>
<name>Austin Clements</name>
<email>amdragon@MIT.EDU</email>
</author>
<published>2012-04-28T22:25:36Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=7bf5be75ae8e3c2d4e8c06bba8b44f4fd495349b'/>
<id>urn:sha1:7bf5be75ae8e3c2d4e8c06bba8b44f4fd495349b</id>
<content type='text'>
We've changed the APIs of notmuch_database_open,
notmuch_database_create, and notmuch_database_close.

Amended by db: also bump string in bindings/python/notmuch/globals.py
</content>
</entry>
<entry>
<title>python: Update Python bindings for new notmuch_database_{open, create} signatures</title>
<updated>2012-05-05T13:13:57Z</updated>
<author>
<name>Austin Clements</name>
<email>amdragon@MIT.EDU</email>
</author>
<published>2012-04-30T16:25:36Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=0a357fe4105b3ea936b41584cb40312e84a1e67a'/>
<id>urn:sha1:0a357fe4105b3ea936b41584cb40312e84a1e67a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>python: remove a note stating wrong things about the memory management</title>
<updated>2012-04-30T17:51:16Z</updated>
<author>
<name>Justus Winter</name>
<email>4winter@informatik.uni-hamburg.de</email>
</author>
<published>2012-04-30T17:51:16Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=fcfb619b44b0011ac6bc557e6cbe2d516bc58f8a'/>
<id>urn:sha1:fcfb619b44b0011ac6bc557e6cbe2d516bc58f8a</id>
<content type='text'>
Signed-off-by: Justus Winter &lt;4winter@informatik.uni-hamburg.de&gt;
</content>
</entry>
<entry>
<title>python: document the Database.close function</title>
<updated>2012-04-30T17:48:45Z</updated>
<author>
<name>Justus Winter</name>
<email>4winter@informatik.uni-hamburg.de</email>
</author>
<published>2012-04-30T17:48:45Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=ca1e232e5fa35c2fabe0ef4fcb78911bcffe67b8'/>
<id>urn:sha1:ca1e232e5fa35c2fabe0ef4fcb78911bcffe67b8</id>
<content type='text'>
Put a prominent warning into the docstring of Database.close, make the
function show up in the sphinx doc and refer to the warning in the
paragraph mentioning the context manager protocol.

Signed-off-by: Justus Winter &lt;4winter@informatik.uni-hamburg.de&gt;
</content>
</entry>
<entry>
<title>python: deprecate code formatting messages as text and json</title>
<updated>2012-04-30T17:27:36Z</updated>
<author>
<name>Justus Winter</name>
<email>4winter@informatik.uni-hamburg.de</email>
</author>
<published>2012-04-30T16:48:29Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=e9bcbe7e70d0811f11e58466735b2bf7c8f0a3fc'/>
<id>urn:sha1:e9bcbe7e70d0811f11e58466735b2bf7c8f0a3fc</id>
<content type='text'>
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.14.

Signed-off-by: Justus Winter &lt;4winter@informatik.uni-hamburg.de&gt;
</content>
</entry>
<entry>
<title>python: cleanup the __nonzero__ implementations</title>
<updated>2012-04-30T17:25:16Z</updated>
<author>
<name>Justus Winter</name>
<email>4winter@informatik.uni-hamburg.de</email>
</author>
<published>2012-04-30T17:12:36Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=7f74a400d197dac5cdf36960f68f63ce3eeff486'/>
<id>urn:sha1:7f74a400d197dac5cdf36960f68f63ce3eeff486</id>
<content type='text'>
Cleanup the code, reword the docstring and use the same implementation
in the Threads, Tags and Messages classes.

__nonzero__ implements truth value testing. If __nonzero__ is not
implemented, the python runtime would fall back to `len(..) &gt; 0` thus
exhausting the iterator.

Signed-off-by: Justus Winter &lt;4winter@informatik.uni-hamburg.de&gt;
</content>
</entry>
<entry>
<title>python: fix NULL pointer tests</title>
<updated>2012-04-30T17:24:34Z</updated>
<author>
<name>Justus Winter</name>
<email>4winter@informatik.uni-hamburg.de</email>
</author>
<published>2012-04-30T16:52:35Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=162687a99e412098729d639ed7bc27f01372cb84'/>
<id>urn:sha1:162687a99e412098729d639ed7bc27f01372cb84</id>
<content type='text'>
Fix the NULL pointer tests in the destructors of all classes and
Database.create.

Signed-off-by: Justus Winter &lt;4winter@informatik.uni-hamburg.de&gt;
</content>
</entry>
<entry>
<title>python: update the docstrings of Filenames.{__len__,__unicode}</title>
<updated>2012-04-30T16:43:02Z</updated>
<author>
<name>Justus Winter</name>
<email>4winter@informatik.uni-hamburg.de</email>
</author>
<published>2012-04-30T16:43:02Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=09fdf2b283938da1cded87ec8621aabe917a8fa5'/>
<id>urn:sha1:09fdf2b283938da1cded87ec8621aabe917a8fa5</id>
<content type='text'>
Formerly the documentation was overly verbose. Reword the comment and
use the same for both functions.

Signed-off-by: Justus Winter &lt;4winter@informatik.uni-hamburg.de&gt;
</content>
</entry>
<entry>
<title>python: update the docstring of class Filenames</title>
<updated>2012-04-30T16:39:06Z</updated>
<author>
<name>Justus Winter</name>
<email>4winter@informatik.uni-hamburg.de</email>
</author>
<published>2012-04-30T16:39:06Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=0803603cdd0d2db0a0b073aba1ffd79077acba84'/>
<id>urn:sha1:0803603cdd0d2db0a0b073aba1ffd79077acba84</id>
<content type='text'>
Signed-off-by: Justus Winter &lt;4winter@informatik.uni-hamburg.de&gt;
</content>
</entry>
</feed>
