aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/python/notmuch/globals.py
diff options
context:
space:
mode:
authorGravatar Sebastian Spaeth <Sebastian@SSpaeth.de>2011-09-28 17:50:57 +0200
committerGravatar Sebastian Spaeth <Sebastian@SSpaeth.de>2011-09-28 18:31:49 +0200
commit0241a68e9eb67904ac1805ccc82910c555711ac6 (patch)
treeb23105856ff2e19bc9d889ba7660b8cb246667e9 /bindings/python/notmuch/globals.py
parent2c76279cdac96249ffcaa88456675c1cf4a2163d (diff)
python: add begin|end_atomic bindings
* Add UNBALANCED_ATOMIC status code Catch up with the notmuch status codes, and add the UNBALANCED_ATOMIC one. * Add the begin_atomic and end_atomic calls to libnotmuch Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Diffstat (limited to 'bindings/python/notmuch/globals.py')
-rw-r--r--bindings/python/notmuch/globals.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py
index 05b9962a..e5399bed 100644
--- a/bindings/python/notmuch/globals.py
+++ b/bindings/python/notmuch/globals.py
@@ -65,6 +65,7 @@ STATUS = Status(['SUCCESS',
'NULL_POINTER',
'TAG_TOO_LONG',
'UNBALANCED_FREEZE_THAW',
+ 'UNBALANCED_ATOMIC',
'NOT_INITIALIZED'])
"""STATUS is a class, whose attributes provide constants that serve as return
indicators for notmuch functions. Currently the following ones are defined. For
@@ -81,6 +82,7 @@ description.
* NULL_POINTER
* TAG_TOO_LONG
* UNBALANCED_FREEZE_THAW
+ * UNBALANCED_ATOMIC
* NOT_INITIALIZED
Invoke the class method `notmuch.STATUS.status2str` with a status value as