summaryrefslogtreecommitdiffstats
path: root/Lib/pdb.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-xLib/pdb.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py
index a6355ec..d77ea28 100755
--- a/Lib/pdb.py
+++ b/Lib/pdb.py
@@ -500,7 +500,8 @@ class Pdb(bdb.Bdb, cmd.Cmd):
try:
bp = bdb.Breakpoint.bpbynumber[bpnum]
except IndexError:
- print >>self.stdout, 'Breakpoint index %r is not valid' % args[0]
+ print('Breakpoint index %r is not valid' % args[0],
+ file=self.stdout)
return
if bp:
bp.cond = cond
@@ -524,7 +525,8 @@ class Pdb(bdb.Bdb, cmd.Cmd):
try:
bp = bdb.Breakpoint.bpbynumber[bpnum]
except IndexError:
- print >>self.stdout, 'Breakpoint index %r is not valid' % args[0]
+ print('Breakpoint index %r is not valid' % args[0],
+ file=self.stdout)
return
if bp:
bp.ignore = count