aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/linecache.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/linecache.py')
-rw-r--r--Lib/linecache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/linecache.py b/Lib/linecache.py
index f5726e9eb8d..7de373fc54e 100644
--- a/Lib/linecache.py
+++ b/Lib/linecache.py
@@ -76,14 +76,14 @@ def updatecache(filename):
pass
else:
# No luck
- print '*** Cannot stat', filename, ':', msg
+## print '*** Cannot stat', filename, ':', msg
return []
try:
fp = open(fullname, 'r')
lines = fp.readlines()
fp.close()
except IOError, msg:
- print '*** Cannot open', fullname, ':', msg
+## print '*** Cannot open', fullname, ':', msg
return []
size, mtime = stat[ST_SIZE], stat[ST_MTIME]
cache[filename] = size, mtime, lines, fullname