~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2011-05-26 08:05:45 UTC
  • mfrom: (5916 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5917.
  • Revision ID: john@arbash-meinel.com-20110526080545-5tprxfczyj4bfk0o
Merge bzr.dev 5916 and make sure the right patch is applied.

Show diffs side-by-side

added added

removed removed

Lines of Context:
319
319
        """Get a boolean question answered from the user.
320
320
 
321
321
        :param prompt: a message to prompt the user with. Should be a single
322
 
        line without terminating \n.
 
322
            line without terminating \\n.
323
323
        :return: True or False for y/yes or n/no.
324
324
        """
325
325
        raise NotImplementedError(self.get_boolean)
328
328
        """Get an integer from the user.
329
329
 
330
330
        :param prompt: a message to prompt the user with. Could be a multi-line
331
 
            prompt but without a terminating \n.
 
331
            prompt but without a terminating \\n.
332
332
 
333
333
        :return: A signed integer.
334
334
        """