diff options
Diffstat (limited to 'Doc/library/codeop.rst')
-rw-r--r-- | Doc/library/codeop.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/codeop.rst b/Doc/library/codeop.rst index 9ae4176..a52d2c6 100644 --- a/Doc/library/codeop.rst +++ b/Doc/library/codeop.rst @@ -3,9 +3,14 @@ .. module:: codeop :synopsis: Compile (possibly incomplete) Python code. + .. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il> .. sectionauthor:: Michael Hudson <mwh@python.net> +**Source code:** :source:`Lib/codeop.py` + +-------------- + The :mod:`codeop` module provides utilities upon which the Python read-eval-print loop can be emulated, as is done in the :mod:`code` module. As a result, you probably don't want to use the module directly; if you want to |