Message202449
| 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:09 | terry.reedy | set | recipients:
+ terry.reedy, roger.serwy |
| 2013年11月08日 22:40:09 | terry.reedy | set | messageid: <1383950409.57.0.49449922413.issue15313@psf.upfronthosting.co.za> |
| 2013年11月08日 22:40:09 | terry.reedy | link | issue15313 messages |
| 2013年11月08日 22:40:09 | terry.reedy | create |
|