diff options
Diffstat (limited to 'Doc/library/linecache.rst')
-rw-r--r-- | Doc/library/linecache.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/linecache.rst b/Doc/library/linecache.rst index 146cb27..688e297 100644 --- a/Doc/library/linecache.rst +++ b/Doc/library/linecache.rst @@ -16,7 +16,7 @@ The :mod:`linecache` module defines the following functions: .. function:: getline(filename, lineno, module_globals=None) - Get line *lineno* from file named *filename*. This function will never throw an + Get line *lineno* from file named *filename*. This function will never raise an exception --- it will return ``''`` on errors (the terminating newline character will be included for lines that are found). |