diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-09-14 06:38:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-14 06:38:36 (GMT) |
commit | 13ad3b7a82bf56d803fbe48ee5df6c4b08986c78 (patch) | |
tree | 5704d2735779297fbba0e99ae333ff1a4f928513 /Lib/test/test_inspect.py | |
parent | 312ffead1eb272535e021e248b5d74ab04b2e72e (diff) | |
download | cpython-13ad3b7a82bf56d803fbe48ee5df6c4b08986c78.zip cpython-13ad3b7a82bf56d803fbe48ee5df6c4b08986c78.tar.gz cpython-13ad3b7a82bf56d803fbe48ee5df6c4b08986c78.tar.bz2 |
bpo-31462: Remove trailing whitespaces. (#3564)
Diffstat (limited to 'Lib/test/test_inspect.py')
-rw-r--r-- | Lib/test/test_inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index 350d5db..7cc1e78 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -2018,7 +2018,7 @@ class TestSignatureObject(unittest.TestCase): ((('args', ..., ..., 'var_positional'),), ...)) self.assertEqual(self.signature(A.f3), ((('args', ..., ..., 'var_positional'),), ...)) - self.assertEqual(self.signature(A.f4), + self.assertEqual(self.signature(A.f4), ((('args', ..., ..., 'var_positional'), ('kwargs', ..., ..., 'var_keyword')), ...)) @cpython_only |