diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-02-10 16:49:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 16:49:29 (GMT) |
commit | 366b94905869d680b3f1d4801fb497e78811e511 (patch) | |
tree | bec97cee43bbb92592e8743aad57cd3afafa88c7 /Lib | |
parent | 5d15224011217487e1a174c144af0e5f5826c17c (diff) | |
download | cpython-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')
-rw-r--r-- | Lib/bdb.py | 7 | ||||
-rw-r--r-- | Lib/test/test_bdb.py | 6 |
2 files changed, 10 insertions, 3 deletions
@@ -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 diff --git a/Lib/test/test_bdb.py b/Lib/test/test_bdb.py index 87a5ac3..042c2da 100644 --- a/Lib/test/test_bdb.py +++ b/Lib/test/test_bdb.py @@ -1203,5 +1203,11 @@ class IssuesTestCase(BaseTestCase): tracer.runcall(tfunc_import) +class TestRegressions(unittest.TestCase): + def test_format_stack_entry_no_lineno(self): + # See gh-101517 + Bdb().format_stack_entry((sys._getframe(), None)) + + if __name__ == "__main__": unittest.main() |