aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/python/docs
diff options
context:
space:
mode:
authorGravatar Justus Winter <4winter@informatik.uni-hamburg.de>2012-02-22 21:55:59 +0100
committerGravatar Justus Winter <4winter@informatik.uni-hamburg.de>2012-02-22 22:06:45 +0100
commitba95980cf1a5e2b32104611ccdf2e9c43bf3305a (patch)
tree790bd53661dbe6818032df0929ce1369fcb478bc /bindings/python/docs
parent1736488ecfd9b18a380ce04ac2df0303c0ea3c80 (diff)
python: refactor the python bindings
Move the Directory class into its own file, merge the two Filenames classes into one, deprecate Filenames.as_iterator, update the documentation accordingly. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
Diffstat (limited to 'bindings/python/docs')
-rw-r--r--bindings/python/docs/source/index.rst20
1 files changed, 11 insertions, 9 deletions
diff --git a/bindings/python/docs/source/index.rst b/bindings/python/docs/source/index.rst
index 25eb146c..e87a8659 100644
--- a/bindings/python/docs/source/index.rst
+++ b/bindings/python/docs/source/index.rst
@@ -254,26 +254,28 @@ More information on specific topics can be found on the following pages:
:class:`Filenames` -- An iterator over filenames
------------------------------------------------
-.. autoclass:: notmuch.database.Filenames
+.. autoclass:: notmuch.Filenames
- .. automethod:: notmuch.database.Filenames.__len__
+ .. automethod:: notmuch.Filenames.__len__
+
+ .. automethod:: notmuch.Filenames.as_generator
:class:`notmuch.database.Directoy` -- A directory entry in the database
------------------------------------------------------------------------
-.. autoclass:: notmuch.database.Directory
+.. autoclass:: notmuch.Directory
- .. automethod:: notmuch.database.Directory.get_child_files
+ .. automethod:: notmuch.Directory.get_child_files
- .. automethod:: notmuch.database.Directory.get_child_directories
+ .. automethod:: notmuch.Directory.get_child_directories
- .. automethod:: notmuch.database.Directory.get_mtime
+ .. automethod:: notmuch.Directory.get_mtime
- .. automethod:: notmuch.database.Directory.set_mtime
+ .. automethod:: notmuch.Directory.set_mtime
- .. autoattribute:: notmuch.database.Directory.mtime
+ .. autoattribute:: notmuch.Directory.mtime
- .. autoattribute:: notmuch.database.Directory.path
+ .. autoattribute:: notmuch.Directory.path
The `next page <status_and_errors.html>`_ contains information on possible Status and Error values.