Lines Matching refs:pyc
35 in ``.pyc``.
37 ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2. If *dfile* is
99 whether a bytecode file is up to date with a source file. The ``.pyc`` file
101 :ref:`pyc-invalidation` for more information on how Python invalidates
102 ``.pyc`` files at runtime.
108 The ``.pyc`` file includes the timestamp and size of the source file,
110 runtime to determine if the ``.pyc`` file needs to be regenerated.
114 The ``.pyc`` file includes a hash of the source file content, which Python
115 will compare against the source at runtime to determine if the ``.pyc``
120 Like :attr:`CHECKED_HASH`, the ``.pyc`` file includes a hash of the source
121 file content. However, Python will at runtime assume the ``.pyc`` file is
122 up to date and not validate the ``.pyc`` against the source file at all.