~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/__init__.py

  • Committer: Martin Pool
  • Date: 2009-09-23 06:29:46 UTC
  • mto: This revision was merged to the branch mainline in revision 4745.
  • Revision ID: mbp@sourcefrog.net-20090923062946-084iws6sphrck1gm
Add show_warning and show_message tests and implementations

Show diffs side-by-side

added added

removed removed

Lines of Context:
337
337
    def show_error(self, msg):
338
338
        pass
339
339
 
 
340
    def show_message(self, msg):
 
341
        pass
 
342
 
 
343
    def show_warning(self, msg):
 
344
        pass
 
345
 
340
346
 
341
347
class CannedInputUIFactory(SilentUIFactory):
342
348
    """A silent UI that return canned input."""