| 890 | self.assertEqual(kwargs_captured, [{"baz": "bar"}]) |
| 891 | |
| 892 | class A: |
| 893 | def method_two_args(self, x, y): |
| 894 | pass |
| 895 | |
| 896 | @staticmethod |
| 897 | def static_no_args(): |
| 898 | pass |
| 899 | |
| 900 | @staticmethod |
| 901 | def positional_only(arg, /): |
| 902 | pass |
| 903 | |
| 904 | @cpython_only |
| 905 | class TestErrorMessagesUseQualifiedName(unittest.TestCase): |
no outgoing calls