Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Lib/test/test_sys_setprofile.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ def f(p):
(1, 'return', f_ident)])

# Test an invalid call (bpo-34125)
def test_unbound_method_no_args(self):
def test_unbound_method_no_keyword_args(self):
kwargs = {}
def f(p):
dict.get(**kwargs)
Expand All @@ -360,7 +360,7 @@ def f(p):
(1, 'return', f_ident)])

# Test an invalid call (bpo-34125)
def test_unbound_method_invalid_args(self):
def test_unbound_method_invalid_keyword_args(self):
kwargs = {}
def f(p):
dict.get(print, 42, **kwargs)
Expand Down