mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Correct typo in new function get_breaks().
This commit is contained in:
parent
816a9fbd2c
commit
0189c010c3
1 changed files with 1 additions and 1 deletions
|
|
@ -255,7 +255,7 @@ class Bdb:
|
|||
def get_breaks(self, filename, lineno):
|
||||
return self.breaks.has_key(filename) and \
|
||||
lineno in self.breaks[filename] and \
|
||||
Breakpoint.bplist[filename, line] or []
|
||||
Breakpoint.bplist[filename, lineno] or []
|
||||
|
||||
def get_file_breaks(self, filename):
|
||||
if self.breaks.has_key(filename):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue