summaryrefslogtreecommitdiffstats
path: root/Lib/linecache.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-09-29 01:30:45 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-09-29 01:30:45 (GMT)
commit41a64a53a30f2d81de7b4a05e5e8e9b4089f7ca7 (patch)
tree511eef49886fd9929fe9b64369bfee0bbeaa067e /Lib/linecache.py
parent78f43a73cb9f44e113730fd74b98d681843c8398 (diff)
downloadcpython-41a64a53a30f2d81de7b4a05e5e8e9b4089f7ca7.zip
cpython-41a64a53a30f2d81de7b4a05e5e8e9b4089f7ca7.tar.gz
cpython-41a64a53a30f2d81de7b4a05e5e8e9b4089f7ca7.tar.bz2
linecache.updatecache(): don't the lines into the cache on IOError
Use the same behaviour than Python 2.7.
Diffstat (limited to 'Lib/linecache.py')
-rw-r--r--Lib/linecache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/linecache.py b/Lib/linecache.py
index f0bb83d..974b1d9 100644
--- a/Lib/linecache.py
+++ b/Lib/linecache.py
@@ -128,7 +128,7 @@ def updatecache(filename, module_globals=None):
with open(fullname, 'r', encoding=coding) as fp:
lines = fp.readlines()
except IOError:
- lines = []
+ return []
if lines and not lines[-1].endswith('\n'):
lines[-1] += '\n'
size, mtime = stat.st_size, stat.st_mtime