~ausimage/soovee/trunk

« back to all changes in this revision

Viewing changes to soovee_lib/enclist.py

  • Committer: Jeremy AustinBardo
  • Date: 2009-06-11 01:31:26 UTC
  • Revision ID: tjaustinbardo@gmail.com-20090611013126-0g4axgnvbif9y3og
Fix bugs with shelf creation and stray copy paste errors. Adjusted epydoc comments to more

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
class Que(object):
29
29
    """
30
30
    Iterable container to play a list of files.
 
31
    
 
32
        - C{Que(enclosures:list) -> None}
 
33
        - C{Que.next(None) -> string}
 
34
        - C{Que.set(value:str) -> None}
 
35
        - C{[item for item in Que]}
31
36
    """
32
37
    __index = -1
33
38
    def __init__(self, enclosures):