This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients roger.serwy, terry.reedy
Date 2013-11-08.22:40:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383950409.57.0.49449922413.issue15313@psf.upfronthosting.co.za>
In-reply-to
Content
RA's patch for #16261 suggests

diff -r b76d2d8db81f Lib/idlelib/PyShell.py
--- a/Lib/idlelib/PyShell.py	Mon Dec 17 13:43:14 2012 +0530
+++ b/Lib/idlelib/PyShell.py	Wed Jan 09 19:10:26 2013 +0530
@@ -152,7 +152,7 @@
         lineno = int(float(text.index("insert")))
         try:
             self.breakpoints.remove(lineno)
-        except:
+        except ValueError:
             pass
         text.tag_remove("BREAK", "insert linestart",\
                         "insert lineend +1char")
History
Date User Action Args
2013-11-08 22:40:09terry.reedysetrecipients: + terry.reedy, roger.serwy
2013-11-08 22:40:09terry.reedysetmessageid: <1383950409.57.0.49449922413.issue15313@psf.upfronthosting.co.za>
2013-11-08 22:40:09terry.reedylinkissue15313 messages
2013-11-08 22:40:09terry.reedycreate