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.
2 parents dfd72bb + 06c5c6d commit 233f684Copy full SHA for 233f684
2 files changed
Lib/idlelib/PyShell.py
@@ -248,8 +248,8 @@ def update_breakpoints(self):
248
def ranges_to_linenumbers(self, ranges):
249
lines = []
250
for index in range(0, len(ranges), 2):
251
- lineno = int(float(ranges[index]))
252
- end = int(float(ranges[index+1]))
+ lineno = int(float(ranges[index].string))
+ end = int(float(ranges[index+1].string))
253
while lineno < end:
254
lines.append(lineno)
255
lineno += 1
Misc/NEWS
@@ -343,6 +343,9 @@ Core and Builtins
343
Library
344
-------
345
346
+- Issue #9803: Don't close IDLE on saving if breakpoint is open.
347
+ Patch by Roger Serwy.
348
+
349
- Issue #12288: Consider '0' and '0.0' as valid initialvalue
350
for tkinter SimpleDialog.
351
0 commit comments