~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr.py

  • Committer: Martin Pool
  • Date: 2005-03-13 05:32:33 UTC
  • Revision ID: mbp@sourcefrog.net-20050313053233-e30a4f28aef48f9d
fix up parse_args doctest

Show diffs side-by-side

added added

removed removed

Lines of Context:
583
583
    lookup table, something about the available options, what optargs
584
584
    they take, and which commands will accept them.
585
585
 
586
 
    >>> parse_args('bzr --help'.split())
 
586
    >>> parse_args('--help'.split())
587
587
    ([], {'help': True})
588
 
    >>> parse_args('bzr --version'.split())
 
588
    >>> parse_args('--version'.split())
589
589
    ([], {'version': True})
590
 
    >>> parse_args('bzr status --all'.split())
 
590
    >>> parse_args('status --all'.split())
591
591
    (['status'], {'all': True})
592
 
    >>> parse_args('bzr commit --message=biter'.split())
 
592
    >>> parse_args('commit --message=biter'.split())
593
593
    (['commit'], {'message': u'biter'})
594
594
    """
595
595
    args = []