diff options
Diffstat (limited to 'Lib/linecache.py')
| -rw-r--r-- | Lib/linecache.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/linecache.py b/Lib/linecache.py index f5726e9..7de373f 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  | 
