summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/Debugger.py
diff options
context:
space:
mode:
authorChui Tey <chui.tey@advdata.com.au>2002-11-04 23:39:45 (GMT)
committerChui Tey <chui.tey@advdata.com.au>2002-11-04 23:39:45 (GMT)
commit69371d6530cf6a14742e3d907dcbe03de06f8406 (patch)
treec6c97b23d8afe9883cd372e68132bda2f5997761 /Lib/idlelib/Debugger.py
parent662390681e94fd4437ee000d23d042a0135aa234 (diff)
downloadcpython-69371d6530cf6a14742e3d907dcbe03de06f8406.zip
cpython-69371d6530cf6a14742e3d907dcbe03de06f8406.tar.gz
cpython-69371d6530cf6a14742e3d907dcbe03de06f8406.tar.bz2
Set breakpoints on remote debugger
Diffstat (limited to 'Lib/idlelib/Debugger.py')
-rw-r--r--Lib/idlelib/Debugger.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/Debugger.py b/Lib/idlelib/Debugger.py
index 27e8c2b..a0b54a3 100644
--- a/Lib/idlelib/Debugger.py
+++ b/Lib/idlelib/Debugger.py
@@ -330,7 +330,7 @@ class Debugger:
for editwin in pyshell_edit_windows:
filename = editwin.io.filename
try:
- for lineno in editwin.breakpoints:
+ for lineno in editwin.get_current_breaks():
self.set_breakpoint_here(filename, lineno)
except AttributeError:
continue