Skip to content

Commit 679b2aa

Browse files
cocolatoaisk
andauthored
Update Lib/pdb.py
Co-authored-by: AN Long <aisk@users.noreply.github.com>
1 parent f67d321 commit 679b2aa

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Lib/pdb.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1393,8 +1393,7 @@ def do_break(self, arg, temporary=False):
13931393
if not find_res:
13941394
self.error('Bad lineno or function name: %s' % arg)
13951395
return
1396-
funcname, filename, ln = find_res
1397-
lineno = int(ln)
1396+
funcname, filename, lineno = find_res
13981397
else:
13991398
# no colon; can be lineno or function
14001399
try:

0 commit comments

Comments
 (0)