summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-02 06:39:42 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-02 06:39:42 (GMT)
commitdc14bc58e3ebeb43e51dab11bb5b239c778d680a (patch)
tree3b9654b90357d47716861937fa7a54318be3a7df
parentfe3c80ba16c85bc146980547dfa16375dc8cd456 (diff)
parentc066105e346e15d35927a47da383744844906ce0 (diff)
downloadcpython-dc14bc58e3ebeb43e51dab11bb5b239c778d680a.zip
cpython-dc14bc58e3ebeb43e51dab11bb5b239c778d680a.tar.gz
cpython-dc14bc58e3ebeb43e51dab11bb5b239c778d680a.tar.bz2
merge heads
-rw-r--r--Doc/library/compileall.rst4
-rw-r--r--Doc/library/symtable.rst4
2 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst
index f805787..9132265 100644
--- a/Doc/library/compileall.rst
+++ b/Doc/library/compileall.rst
@@ -4,6 +4,10 @@
.. module:: compileall
:synopsis: Tools for byte-compiling all Python source files in a directory tree.
+**Source code:** :source:`Lib/compileall.py`
+
+--------------
+
This module provides some utility functions to support installing Python
libraries. These functions compile Python source files in a directory tree.
diff --git a/Doc/library/symtable.rst b/Doc/library/symtable.rst
index 472a9d6..c04e22e 100644
--- a/Doc/library/symtable.rst
+++ b/Doc/library/symtable.rst
@@ -4,6 +4,10 @@
.. module:: symtable
:synopsis: Interface to the compiler's internal symbol tables.
+**Source code:** :source:`Lib/symtable.py`
+
+--------------
+
.. moduleauthor:: Jeremy Hylton <jeremy@alum.mit.edu>
.. sectionauthor:: Benjamin Peterson <benjamin@python.org>