diff options
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-x | Lib/pdb.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py index a6355ec116..d77ea287a7 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 |