diff options
author | Georg Brandl <georg@python.org> | 2013-10-27 08:16:01 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-27 08:16:01 (GMT) |
commit | 325a1c2f371c034ae8e0d816c9da4bda8e886a15 (patch) | |
tree | f646616f6712e555d2576b7ed0373d93b96134c3 /Doc/tutorial/modules.rst | |
parent | c9d597a46d4c2d6fbed1510e09fdca5a4a81d0a7 (diff) | |
download | cpython-325a1c2f371c034ae8e0d816c9da4bda8e886a15.zip cpython-325a1c2f371c034ae8e0d816c9da4bda8e886a15.tar.gz cpython-325a1c2f371c034ae8e0d816c9da4bda8e886a15.tar.bz2 |
Fix markup errors in the docs and amend suspicious ignores.
Diffstat (limited to 'Doc/tutorial/modules.rst')
-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 df5eb34..1902964 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 |