From c0a8f8ce84058cd9e6f1c79fa3794d62c07ac2c1 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 2 Oct 2014 08:38:39 +0200 Subject: [PATCH] closes #22528: add source links to symtable and compileall --- Doc/library/compileall.rst | 4 ++++ Doc/library/symtable.rst | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst index 41e9e1b095a..9712de2fef3 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 472a9d6ad18..c04e22e5d24 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 .. sectionauthor:: Benjamin Peterson