Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baf642e commit 92794e3Copy full SHA for 92794e3
1 file changed
Lib/linecache.py
@@ -76,14 +76,14 @@ def updatecache(filename):
76
pass
77
else:
78
# No luck
79
- print '*** Cannot stat', filename, ':', msg
+## print '*** Cannot stat', filename, ':', msg
80
return []
81
try:
82
fp = open(fullname, 'r')
83
lines = fp.readlines()
84
fp.close()
85
except IOError, msg:
86
- print '*** Cannot open', fullname, ':', msg
+## print '*** Cannot open', fullname, ':', msg
87
88
size, mtime = stat[ST_SIZE], stat[ST_MTIME]
89
cache[filename] = size, mtime, lines, fullname
0 commit comments