diff options
author | Georg Brandl <georg@python.org> | 2013-10-27 08:54:53 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-27 08:54:53 (GMT) |
commit | 186729e81211ad04a2db523c3ac9e8e79aed3fd9 (patch) | |
tree | aed79a9b8f6c84dba56878a45d2c128bc68502ab /Doc/tutorial | |
parent | fb404f528a1c0122f72ad4ab12cd5c26e5d13835 (diff) | |
parent | d2d6beaa69e6f9699925f9ad8a8630b0c1924c2b (diff) | |
download | cpython-186729e81211ad04a2db523c3ac9e8e79aed3fd9.zip cpython-186729e81211ad04a2db523c3ac9e8e79aed3fd9.tar.gz cpython-186729e81211ad04a2db523c3ac9e8e79aed3fd9.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/modules.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index a670f94..94a66ac 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst @@ -184,7 +184,7 @@ directory. This is an error unless the replacement is intended. See section ----------------------- To speed up loading modules, Python caches the compiled version of each module -in the ``__pycache__`` directory under the name :file:`module.{version}.pyc``, +in the ``__pycache__`` directory under the name :file:`module.{version}.pyc`, where the version encodes the format of the compiled file; it generally contains the Python version number. For example, in CPython release 3.3 the compiled version of spam.py would be cached as ``__pycache__/spam.cpython-33.pyc``. This |