summaryrefslogtreecommitdiffstats
path: root/Lib/bdb.py
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2023-02-10 16:49:29 (GMT)
committerGitHub <noreply@github.com>2023-02-10 16:49:29 (GMT)
commit366b94905869d680b3f1d4801fb497e78811e511 (patch)
treebec97cee43bbb92592e8743aad57cd3afafa88c7 /Lib/bdb.py
parent5d15224011217487e1a174c144af0e5f5826c17c (diff)
downloadcpython-366b94905869d680b3f1d4801fb497e78811e511.zip
cpython-366b94905869d680b3f1d4801fb497e78811e511.tar.gz
cpython-366b94905869d680b3f1d4801fb497e78811e511.tar.bz2
gh-101517: make bdb avoid looking up in linecache with lineno=None (#101787)
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r--Lib/bdb.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py
index 81fbb85..7f9b095 100644
--- a/Lib/bdb.py
+++ b/Lib/bdb.py
@@ -570,9 +570,10 @@ class Bdb:
rv = frame.f_locals['__return__']
s += '->'
s += reprlib.repr(rv)
- line = linecache.getline(filename, lineno, frame.f_globals)
- if line:
- s += lprefix + line.strip()
+ if lineno is not None:
+ line = linecache.getline(filename, lineno, frame.f_globals)
+ if line:
+ s += lprefix + line.strip()
return s
# The following methods can be called by clients to use