~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-19 10:51:37 UTC
  • mfrom: (5891.1.3 api-docs)
  • Revision ID: pqm@pqm.ubuntu.com-20110519105137-amzagrral2ldm1lq
(spiv) Fix the formatting of more docstrings. (Andrew Bennetts)

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