diff options
| author | David Bremner <bremner@debian.org> | 2012-03-18 08:36:33 -0300 |
|---|---|---|
| committer | David Bremner <bremner@debian.org> | 2012-03-18 08:36:33 -0300 |
| commit | fc4e5248d29cf7264481cbff82343eade5fcc2ca (patch) | |
| tree | 9d5364587f18ee9705ebefec4be3ea4b4aeb9c6e /bindings/python | |
| parent | 4d17a34286dc67fd434a9c8ca3518bf878ecf78b (diff) | |
| parent | 9325cae5f46e543aedb790cfe62a4faabcba949c (diff) | |
Merge tag '0.12_rc2'
notmuch 0.12~rc2 release
Diffstat (limited to 'bindings/python')
| -rw-r--r-- | bindings/python/notmuch/directory.py | 2 | ||||
| -rw-r--r-- | bindings/python/notmuch/threads.py | 2 | ||||
| -rw-r--r-- | bindings/python/notmuch/version.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bindings/python/notmuch/directory.py b/bindings/python/notmuch/directory.py index 0c5e015e..284cbdce 100644 --- a/bindings/python/notmuch/directory.py +++ b/bindings/python/notmuch/directory.py @@ -177,7 +177,7 @@ class Directory(object): _destroy = nmlib.notmuch_directory_destroy _destroy.argtypes = [NotmuchDirectoryP] - _destroy.argtypes = None + _destroy.restype = None def __del__(self): """Close and free the Directory""" diff --git a/bindings/python/notmuch/threads.py b/bindings/python/notmuch/threads.py index 690206ef..225f5246 100644 --- a/bindings/python/notmuch/threads.py +++ b/bindings/python/notmuch/threads.py @@ -172,7 +172,7 @@ class Threads(Python3StringMixIn): _destroy = nmlib.notmuch_threads_destroy _destroy.argtypes = [NotmuchThreadsP] - _destroy.argtypes = None + _destroy.restype = None def __del__(self): """Close and free the notmuch Threads""" diff --git a/bindings/python/notmuch/version.py b/bindings/python/notmuch/version.py index e58a1b53..8f7eb87c 100644 --- a/bindings/python/notmuch/version.py +++ b/bindings/python/notmuch/version.py @@ -1,2 +1,2 @@ # this file should be kept in sync with ../../../version -__VERSION__ = '0.12~rc1' +__VERSION__ = '0.12~rc2' |
