diff options
author | Guido van Rossum <guido@python.org> | 2001-12-17 16:07:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-12-17 16:07:06 (GMT) |
commit | facf24bdc7b292029b3e611d241feee157cda4c4 (patch) | |
tree | 7cbb6e106e8874f0d10b677cd3e04eabe7c25f15 /Lib | |
parent | 6e1c576a4e02595994a06993359bb4ff55ff586f (diff) | |
download | cpython-facf24bdc7b292029b3e611d241feee157cda4c4.zip cpython-facf24bdc7b292029b3e611d241feee157cda4c4.tar.gz cpython-facf24bdc7b292029b3e611d241feee157cda4c4.tar.bz2 |
Don't use Latex \code{...} in docstrings.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/site.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py index 6b6b3ca..09043a8 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -23,7 +23,7 @@ A path configuration file is a file whose name has the form to be added to sys.path. Non-existing directories (or non-directories) are never added to sys.path; no directory is added to sys.path more than once. Blank lines and lines beginning with -\code{#} are skipped. Lines starting with \code{import} are executed. +'#' are skipped. Lines starting with 'import' are executed. For example, suppose sys.prefix and sys.exec_prefix are set to /usr/local and there is a directory /usr/local/lib/python1.5/site-packages |