diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-03-18 14:16:50 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-03-18 14:16:50 +0100 |
commit | 376658fa13f5c56a89a47ced0c5a88c43ce508b7 (patch) | |
tree | cb6cee25097e95d512e66a35ccb2ba9f082c5fc5 | |
parent | 93f0665fb612f08f3a4e6dc5d9d5350ddad6b653 (diff) | |
download | cpython-git-376658fa13f5c56a89a47ced0c5a88c43ce508b7.tar.gz |
Issue #11726: Fix linecache example in the doc
Use a Python source file (linecache.__file__) instead of /etc/passwd.
Modify also linecache docstrings to clarify the linecache is written to cache
Python source files, not any text files.
-rw-r--r-- | Doc/library/linecache.rst | 4 | ||||
-rw-r--r-- | Lib/linecache.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/linecache.rst b/Doc/library/linecache.rst index 0c096ada91..e9ec801763 100644 --- a/Doc/library/linecache.rst +++ b/Doc/library/linecache.rst @@ -51,5 +51,5 @@ The :mod:`linecache` module defines the following functions: Example:: >>> import linecache - >>> linecache.getline('/etc/passwd', 4) - 'sys:x:3:3:sys:/dev:/bin/sh\n' + >>> linecache.getline(linecache.__file__, 8) + 'import sys\n' diff --git a/Lib/linecache.py b/Lib/linecache.py index 02a9eb5253..e505b03124 100644 --- a/Lib/linecache.py +++ b/Lib/linecache.py @@ -1,4 +1,4 @@ -"""Cache lines from files. +"""Cache lines from Python source files. This is intended to read lines from modules imported -- hence if a filename is not found, it will look down the module search path for a file by @@ -32,7 +32,7 @@ def clearcache(): def getlines(filename, module_globals=None): - """Get the lines for a file from the cache. + """Get the lines for a Python source file from the cache. Update the cache if it doesn't contain an entry for this file already.""" if filename in cache: |