remove debugging rubish
diff --git a/Lib/linecache.py b/Lib/linecache.py
index c999851..da62f0d 100644
--- a/Lib/linecache.py
+++ b/Lib/linecache.py
@@ -123,15 +123,12 @@
                 except os.error:
                     pass
         else:
-            # No luck
-##          print '*** Cannot stat', filename, ':', msg
             return []
     try:
         fp = open(fullname, 'rU')
         lines = fp.readlines()
         fp.close()
     except IOError, msg:
-##      print '*** Cannot open', fullname, ':', msg
         return []
     if lines and not lines[-1].endswith('\n'):
         lines[-1] += '\n'