/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/ui/__init__.py

  • Committer: Andrew Bennetts
  • Date: 2011-05-19 09:32:38 UTC
  • mto: This revision was merged to the branch mainline in revision 5896.
  • Revision ID: andrew.bennetts@canonical.com-20110519093238-nwmz5fkehlu37hag
Move docstring formatting fixes.

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
        """