python: pep8 compliance for filename.py

This commit is contained in:
pazz 2011-07-12 21:13:57 +01:00 committed by Sebastian Spaeth
parent e69e30edd7
commit 8176326f30

View file

@ -19,17 +19,18 @@ Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>'
from ctypes import c_char_p from ctypes import c_char_p
from notmuch.globals import nmlib, STATUS, NotmuchError from notmuch.globals import nmlib, STATUS, NotmuchError
#------------------------------------------------------------------------------
class Filenames(object): class Filenames(object):
"""Represents a list of filenames as returned by notmuch """Represents a list of filenames as returned by notmuch
This object contains the Filenames iterator. The main function is as_generator() which will return a generator so we can do a Filenamesth an iterator over a list of notmuch filenames. Do This object contains the Filenames iterator. The main function is
note that the underlying library only provides a one-time iterator as_generator() which will return a generator so we can do a Filenamesth an
(it cannot reset the iterator to the start). Thus iterating over iterator over a list of notmuch filenames. Do note that the underlying
the function will "exhaust" the list of tags, and a subsequent library only provides a one-time iterator (it cannot reset the iterator to
iteration attempt will raise a :exc:`NotmuchError` the start). Thus iterating over the function will "exhaust" the list of
STATUS.NOT_INITIALIZED. Also note, that any function that uses tags, and a subsequent iteration attempt will raise a :exc:`NotmuchError`
iteration (nearly all) will also exhaust the tags. So both:: STATUS.NOT_INITIALIZED. Also note, that any function that uses iteration
(nearly all) will also exhaust the tags. So both::
for name in filenames: print name for name in filenames: print name
@ -85,7 +86,7 @@ class Filenames(object):
self._files = None self._files = None
return return
file = Filenames._get (self._files) file = Filenames._get(self._files)
nmlib.notmuch_filenames_move_to_next(self._files) nmlib.notmuch_filenames_move_to_next(self._files)
yield file yield file
@ -105,4 +106,4 @@ class Filenames(object):
def __del__(self): def __del__(self):
"""Close and free the notmuch filenames""" """Close and free the notmuch filenames"""
if self._files is not None: if self._files is not None:
nmlib.notmuch_filenames_destroy (self._files) nmlib.notmuch_filenames_destroy(self._files)