summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-03-18 13:14:42 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-03-18 13:14:42 (GMT)
commit93f0665fb612f08f3a4e6dc5d9d5350ddad6b653 (patch)
treee91a1be379dbdd154d52c4f70a4391d78d569cbc /Doc
parent6a318d420a1512f632aa7e21a1956cfeb38b682d (diff)
downloadcpython-93f0665fb612f08f3a4e6dc5d9d5350ddad6b653.zip
cpython-93f0665fb612f08f3a4e6dc5d9d5350ddad6b653.tar.gz
cpython-93f0665fb612f08f3a4e6dc5d9d5350ddad6b653.tar.bz2
Issue #11726: clarify linecache doc: linecache is written to cache Python
source files, even if "it works" with other text files encoded to UTF-8.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/linecache.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/library/linecache.rst b/Doc/library/linecache.rst
index dacf8aa..0c096ad 100644
--- a/Doc/library/linecache.rst
+++ b/Doc/library/linecache.rst
@@ -9,11 +9,15 @@
--------------
-The :mod:`linecache` module allows one to get any line from any file, while
+The :mod:`linecache` module allows one to get any line from a Python source file, while
attempting to optimize internally, using a cache, the common case where many
lines are read from a single file. This is used by the :mod:`traceback` module
to retrieve source lines for inclusion in the formatted traceback.
+The :func:`tokenize.open` function is used to open Python source files. This
+function uses :func:`tokenize.detect_encoding` to get the encoding of the
+Python source file.
+
The :mod:`linecache` module defines the following functions:
@@ -49,4 +53,3 @@ Example::
>>> import linecache
>>> linecache.getline('/etc/passwd', 4)
'sys:x:3:3:sys:/dev:/bin/sh\n'
-