From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 24 Feb 2020 03:32:50 +0000 (-0800) Subject: bpo-39649: Remove obsolete check for `__args__` in bdb.Bdb.format_stack_entry (GH... X-Git-Tag: v3.7.7rc1~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=097612a3f711f5a6a3aec207cad78a35eb3a756d;p=thirdparty%2FPython%2Fcpython.git bpo-39649: Remove obsolete check for `__args__` in bdb.Bdb.format_stack_entry (GH-18531) Appears to be obsolete since 75bb54c3d8. Co-authored-by: Terry Jan Reedy (cherry picked from commit 4015d1cda3cdba869103779eb6ff32ad798ff885) Co-authored-by: Daniel Hahler --- diff --git a/Lib/bdb.py b/Lib/bdb.py index caf207733b73..fcdc5731f878 100644 --- a/Lib/bdb.py +++ b/Lib/bdb.py @@ -546,14 +546,7 @@ class Bdb: s += frame.f_code.co_name else: s += "" - if '__args__' in frame.f_locals: - args = frame.f_locals['__args__'] - else: - args = None - if args: - s += reprlib.repr(args) - else: - s += '()' + s += '()' if '__return__' in frame.f_locals: rv = frame.f_locals['__return__'] s += '->' diff --git a/Misc/NEWS.d/next/Library/2020-02-23-21-27-10.bpo-39649.qiubSp.rst b/Misc/NEWS.d/next/Library/2020-02-23-21-27-10.bpo-39649.qiubSp.rst new file mode 100644 index 000000000000..5a88f79f05f0 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-02-23-21-27-10.bpo-39649.qiubSp.rst @@ -0,0 +1 @@ +Remove obsolete check for `__args__` in bdb.Bdb.format_stack_entry.