/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to viz/branchwin.py

  • Committer: Jelmer Vernooij
  • Date: 2007-10-24 18:03:11 UTC
  • Revision ID: jelmer@samba.org-20071024180311-f7117v3sfyw3e9sc
Add docstrings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    """
31
31
 
32
32
    def __init__(self, branch, start, maxnum, parent=None):
 
33
        """Create a new BranchWindow.
 
34
 
 
35
        :param branch: Branch object for branch to show.
 
36
        :param start: Revision id of top revision.
 
37
        :param maxnum: Maximum number of revisions to display, 
 
38
                       None for no limit.
 
39
        """
 
40
 
33
41
        Window.__init__(self, parent=parent)
34
42
        self.set_border_width(0)
35
43