diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-09-09 13:32:07 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-09-09 13:32:07 (GMT) |
commit | f03d50c5da227fe1066f2ce9692e4c5590a8b868 (patch) | |
tree | 07f5474e5bf99b1c6c452e7adb84b06ac5981cf2 | |
parent | 1f4d4705bdfab441404d423052e3f4da8ac09258 (diff) | |
download | cpython-f03d50c5da227fe1066f2ce9692e4c5590a8b868.zip cpython-f03d50c5da227fe1066f2ce9692e4c5590a8b868.tar.gz cpython-f03d50c5da227fe1066f2ce9692e4c5590a8b868.tar.bz2 |
docs.compileall: Fix markup (rendering was off, noticed by Berker Peksag)
-rw-r--r-- | Doc/library/compileall.rst | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst index a4c09cc..82f3753 100644 --- a/Doc/library/compileall.rst +++ b/Doc/library/compileall.rst @@ -88,12 +88,9 @@ compile Python sources. Added the ``-i``, ``-b`` and ``-h`` options. .. versionchanged:: 3.5 - - * Added the ``-j`` and ``-r`` options. - * ``-q`` option was changed to a multilevel value. - * ``-qq`` option. - * ``-b`` will always produce a byte-code file ending in ``.pyc``, - never ``.pyo``. + Added the ``-j``, ``-r``, and ``-qq`` options. ``-q`` option + was changed to a multilevel value. ``b`` will always produce a + byte-code file ending in ``.pyc``, never ``.pyo``. There is no command-line option to control the optimization level used by the |