]> granicus.if.org Git - python/commitdiff
Fix a minor typo and hyphenate "multi-threading" (#4237)
authorBarry Warsaw <barry@python.org>
Tue, 7 Nov 2017 02:18:40 +0000 (18:18 -0800)
committerGitHub <noreply@github.com>
Tue, 7 Nov 2017 02:18:40 +0000 (18:18 -0800)
Doc/using/cmdline.rst

index 310891d6d0aaa3ba2b93a55ae263421393f4750f..9100494fa1ad5d6f7182991385675764300b2f77 100644 (file)
@@ -408,11 +408,11 @@ Miscellaneous options
    * ``-X showalloccount`` to output the total count of allocated objects for
      each type when the program finishes. This only works when Python was built with
      ``COUNT_ALLOCS`` defined.
-   * ``-X importtime`` to show how long each import takes. It shows module name,
-     cumulative time (including nested imports) and self time (exluding nested
-     imports).  Note that its output may be broken in multi threaded application.
-     Typical usage is ``python3 -X importtime -c 'import asyncio'``.  See also
-     :envvar:`PYTHONPROFILEIMPORTTIME`.
+   * ``-X importtime`` to show how long each import takes. It shows module
+     name, cumulative time (including nested imports) and self time (excluding
+     nested imports).  Note that its output may be broken in multi-threaded
+     application.  Typical usage is ``python3 -X importtime -c 'import
+     asyncio'``.  See also :envvar:`PYTHONPROFILEIMPORTTIME`.
 
    It also allows passing arbitrary values and retrieving them through the
    :data:`sys._xoptions` dictionary.