diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-09-09 02:40:30 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-09-09 02:40:30 (GMT) |
commit | 100fc3fbc26eb4e36f3c72e34ccc4e1a8f8b1f95 (patch) | |
tree | 3e67075bbe0b620a2a98bea63bfeb0897d039cca /Doc/library/compileall.rst | |
parent | dfcfe133001d8d6a8af05f1ce45d7c14ffd1a588 (diff) | |
download | cpython-100fc3fbc26eb4e36f3c72e34ccc4e1a8f8b1f95.zip cpython-100fc3fbc26eb4e36f3c72e34ccc4e1a8f8b1f95.tar.gz cpython-100fc3fbc26eb4e36f3c72e34ccc4e1a8f8b1f95.tar.bz2 |
whatsnew/3.5: Fix library news till Py3.5a1. Update other docs.
Diffstat (limited to 'Doc/library/compileall.rst')
-rw-r--r-- | Doc/library/compileall.rst | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst index 0325f1a..a4c09cc 100644 --- a/Doc/library/compileall.rst +++ b/Doc/library/compileall.rst @@ -88,14 +88,12 @@ compile Python sources. Added the ``-i``, ``-b`` and ``-h`` options. .. versionchanged:: 3.5 - Added the ``-j`` and ``-r`` options. -.. versionchanged:: 3.5 - ``-q`` option was changed to a multilevel value. - -.. versionchanged:: 3.5 - ``-b`` will always produce a byte-code file ending in ``.pyc``, never - ``.pyo``. + * 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``. There is no command-line option to control the optimization level used by the |