6. Modules — Python 3.10.1 documentation
docs.python.org › 3 › tutorialJan 09, 2022 · 6.1.3. “Compiled” Python files¶. To speed up loading modules, Python caches the compiled version of each module in the __pycache__ directory under the name module. version.pyc, where the version encodes the format of the compiled file; it generally contains the Python version number.
6. Modules — Python 3.10.1 documentation
https://docs.python.org/3/tutorial/modules09.01.2022 · 6.1.3. “Compiled” Python files¶. To speed up loading modules, Python caches the compiled version of each module in the __pycache__ directory under the name 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 …