diff options
author | Andrew Kuchling <amk@amk.ca> | 2014-03-19 20:23:01 (GMT) |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2014-03-19 20:23:01 (GMT) |
commit | 2e3743cd30090090073600cb05050a0e85327254 (patch) | |
tree | c7aa1d6beafacfdef35818bc69b55a7f841ebcd0 /Doc/library/code.rst | |
parent | 26e417b1821c2f5d27a81d9733273522b5d21c31 (diff) | |
download | cpython-2e3743cd30090090073600cb05050a0e85327254.zip cpython-2e3743cd30090090073600cb05050a0e85327254.tar.gz cpython-2e3743cd30090090073600cb05050a0e85327254.tar.bz2 |
#13437: link to the source code for a few more modules
Diffstat (limited to 'Doc/library/code.rst')
-rw-r--r-- | Doc/library/code.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/code.rst b/Doc/library/code.rst index 5b5d7cc..99bdedc 100644 --- a/Doc/library/code.rst +++ b/Doc/library/code.rst @@ -4,6 +4,7 @@ .. module:: code :synopsis: Facilities to implement read-eval-print loops. +**Source code:** :source:`Lib/code.py` The ``code`` module provides facilities to implement read-eval-print loops in Python. Two classes and convenience functions are included which can be used to @@ -165,4 +166,3 @@ interpreter objects as well as the following additions. newline. When the user enters the EOF key sequence, :exc:`EOFError` is raised. The base implementation reads from ``sys.stdin``; a subclass may replace this with a different implementation. - |