aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/python/notmuch/__init__.py
diff options
context:
space:
mode:
authorGravatar Sebastian Spaeth <Sebastian@SSpaeth.de>2011-10-05 17:54:09 +0200
committerGravatar Sebastian Spaeth <Sebastian@SSpaeth.de>2011-10-05 17:54:09 +0200
commit42f184c23668173e675a006864f188155826d1bd (patch)
tree98b7f2c813eb05b8887e4ba75f840a5dc4d7db84 /bindings/python/notmuch/__init__.py
parenta8db280f586963c82499d7a797fb15d2f766976f (diff)
python: clean up docstrings and API documentation
Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Diffstat (limited to 'bindings/python/notmuch/__init__.py')
-rw-r--r--bindings/python/notmuch/__init__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bindings/python/notmuch/__init__.py b/bindings/python/notmuch/__init__.py
index 36e5fc7a..539afedf 100644
--- a/bindings/python/notmuch/__init__.py
+++ b/bindings/python/notmuch/__init__.py
@@ -17,7 +17,7 @@ likely to need.
db = Database('path',create=True)
msgs = Query(db,'from:myself').search_messages()
- This returns a :class:`Messages` which internally contains a
+ This returns :class:`Messages` which internally contains a
reference to its parent :class:`Query` object. Otherwise the
Query() would be immediately freed, taking our *msgs* down with
it.
@@ -31,7 +31,6 @@ likely to need.
Pretty much the same is valid for all other objects in the
hierarchy, such as :class:`Query`, :class:`Messages`,
:class:`Message`, and :class:`Tags`.
-
"""
"""