From: Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 21 Oct 2020 08:46:22 +0000 (-0700) Subject: Doc: Fix a typo/error in the docs for cached bytecode (GH-22445) X-Git-Tag: v3.8.7rc1~85 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8e6af798e6bfc0d9479a4d16e2bc8cc1a4ad283;p=thirdparty%2FPython%2Fcpython.git Doc: Fix a typo/error in the docs for cached bytecode (GH-22445) (cherry picked from commit cb115e36e1aba04b90b0ecac6f043e60064ac65b) Co-authored-by: Zackery Spytz --- diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst index ca232007dd7f..594bb78e9ecf 100644 --- a/Doc/reference/import.rst +++ b/Doc/reference/import.rst @@ -680,7 +680,7 @@ Here are the exact rules used: Cached bytecode invalidation ---------------------------- -Before Python loads cached bytecode from ``.pyc`` file, it checks whether the +Before Python loads cached bytecode from a ``.pyc`` file, it checks whether the cache is up-to-date with the source ``.py`` file. By default, Python does this by storing the source's last-modified timestamp and size in the cache file when writing it. At runtime, the import system then validates the cache file by