mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
Issue #19076: Don't pass the redundant 'file' argument to self.error().
This commit is contained in:
parent
4bfb14ac10
commit
ad5ffd4767
2 changed files with 3 additions and 1 deletions
|
@ -673,7 +673,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
|
|||
# now set the break point
|
||||
err = self.set_break(filename, line, temporary, cond, funcname)
|
||||
if err:
|
||||
self.error(err, file=self.stdout)
|
||||
self.error(err)
|
||||
else:
|
||||
bp = self.get_breaks(filename, line)[-1]
|
||||
self.message("Breakpoint %d at %s:%d" %
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue