diff options
author | Georg Brandl <georg@python.org> | 2007-10-21 10:45:46 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-10-21 10:45:46 (GMT) |
commit | 5e52db035d4fbce88c5a1a9820edca406fbf5f25 (patch) | |
tree | 5051f2fe632a3b3573a545835ca3f1b00b142927 /Doc/tutorial | |
parent | 5c174bbd845fb9da880b9ab1c9d5da0280cc880f (diff) | |
download | cpython-5e52db035d4fbce88c5a1a9820edca406fbf5f25.zip cpython-5e52db035d4fbce88c5a1a9820edca406fbf5f25.tar.gz cpython-5e52db035d4fbce88c5a1a9820edca406fbf5f25.tar.bz2 |
Add :term:s for descriptors.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/modules.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index 500bd59..fbe931e 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst @@ -186,8 +186,8 @@ Some tips for experts: * When the Python interpreter is invoked with the :option:`-O` flag, optimized code is generated and stored in :file:`.pyo` files. The optimizer currently doesn't help much; it only removes :keyword:`assert` statements. When - :option:`-O` is used, *all* bytecode is optimized; ``.pyc`` files are ignored - and ``.py`` files are compiled to optimized bytecode. + :option:`-O` is used, *all* :term:`bytecode` is optimized; ``.pyc`` files are + ignored and ``.py`` files are compiled to optimized bytecode. * Passing two :option:`-O` flags to the Python interpreter (:option:`-OO`) will cause the bytecode compiler to perform optimizations that could in some rare |