~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-29 13:54:10 UTC
  • mto: This revision was merged to the branch mainline in revision 6178.
  • Revision ID: v.ladeuil+lp@free.fr-20110929135410-gv714ay1lg6ttehv
Get rid of the --override-config long name, ensures the overrides are resest when the command has run.

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 
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``.
 
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.
 
333
 
 
334
-Oname=value   Override the ``name`` config option setting it to ``value`` for
 
335
               the duration of the command.  This can be used multiple times if
 
336
               several options need to be overridden.
336
337
 
337
338
See http://doc.bazaar.canonical.com/developers/profiling.html for more
338
339
information on profiling.