Merge 3.4 (linecache doc)

This commit is contained in:
Victor Stinner 2015-03-18 14:19:19 +01:00
commit 072248ec63
2 changed files with 4 additions and 4 deletions

View file

@ -59,5 +59,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'

View file

@ -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
@ -35,7 +35,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: