diff options
author | Éric Araujo <merwok@netwok.org> | 2010-12-16 06:28:48 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-12-16 06:28:48 (GMT) |
commit | 930df3198746c0f718c7315c9ce331a306375867 (patch) | |
tree | 4301b64ed32c6ef6b2b776fd3e36fa82d40e297a /Doc/library/runpy.rst | |
parent | ff47a133e1eee9dab60b86fb0d56ccd1022f841a (diff) | |
download | cpython-930df3198746c0f718c7315c9ce331a306375867.zip cpython-930df3198746c0f718c7315c9ce331a306375867.tar.gz cpython-930df3198746c0f718c7315c9ce331a306375867.tar.bz2 |
Add missing docs and directives related to PEP 3147 and byte-compilation
Diffstat (limited to 'Doc/library/runpy.rst')
-rw-r--r-- | Doc/library/runpy.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/runpy.rst b/Doc/library/runpy.rst index 896b65d..10e5ebc 100644 --- a/Doc/library/runpy.rst +++ b/Doc/library/runpy.rst @@ -70,6 +70,9 @@ The :mod:`runpy` module provides two functions: .. versionchanged:: 3.1 Added ability to execute packages by looking for a ``__main__`` submodule. + .. versionchanged:: 3.2 + Added ``__cached__`` global variable (see :PEP:`3147`). + .. function:: run_path(file_path, init_globals=None, run_name=None) |