~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

  • Committer: Vincent Ladeuil
  • Date: 2011-09-27 13:18:53 UTC
  • mto: This revision was merged to the branch mainline in revision 6178.
  • Revision ID: v.ladeuil+lp@free.fr-20110927131853-bafk1zx2zyv5otu1
Follow the lead of other 'global' options which are not declared in option.py but handled in bzrlib.commands.run_bzr instead.

Show diffs side-by-side

added added

removed removed

Lines of Context:
312
312
 
313
313
These options may be used with any command, and may appear in front of any
314
314
command.  (e.g. ``bzr --profile help``).
315
 
 
316
 
--version      Print the version number. Must be supplied before the command.
317
 
--no-aliases   Do not process command aliases when running this command.
318
 
--builtin      Use the built-in version of a command, not the plugin version.
319
 
               This does not suppress other plugin effects.
320
 
--no-plugins   Do not process any plugins.
321
 
--no-l10n      Do not translate messages.
322
 
--concurrency  Number of processes that can be run concurrently (selftest).
323
 
 
324
 
--profile      Profile execution using the hotshot profiler.
325
 
--lsprof       Profile execution using the lsprof profiler.
326
 
--lsprof-file  Profile execution using the lsprof profiler, and write the
327
 
               results to a specified file.  If the filename ends with ".txt",
328
 
               text format will be used.  If the filename either starts with
329
 
               "callgrind.out" or end with ".callgrind", the output will be
330
 
               formatted for use with KCacheGrind. Otherwise, the output
331
 
               will be a pickle.
332
 
--coverage     Generate line coverage report in the specified directory.
 
315
                  
 
316
--version         Print the version number. Must be supplied before the command.
 
317
--no-aliases      Do not process command aliases when running this command.
 
318
--builtin         Use the built-in version of a command, not the plugin version.
 
319
                  This does not suppress other plugin effects.
 
320
--no-plugins      Do not process any plugins.
 
321
--no-l10n         Do not translate messages.
 
322
--concurrency     Number of processes that can be run concurrently (selftest).
 
323
                  
 
324
--profile         Profile execution using the hotshot profiler.
 
325
--lsprof          Profile execution using the lsprof profiler.
 
326
--lsprof-file     Profile execution using the lsprof profiler, and write the
 
327
                  results to a specified file.  If the filename ends with 
 
328
                  ".txt",  text format will be used.  If the filename either
 
329
                  starts with "callgrind.out" or end with ".callgrind", the 
 
330
                  output will be formatted for use with KCacheGrind. Otherwise,
 
331
                  the output will be a pickle.
 
332
--coverage        Generate line coverage report in the specified directory.
 
333
--override-config Override a config option for the duration of the command. 
 
334
                  This can be used multiple times if several options need to 
 
335
                  be overridden. The short form is ``-Oname=value``.
333
336
 
334
337
See http://doc.bazaar.canonical.com/developers/profiling.html for more
335
338
information on profiling.