diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-15 14:20:47 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-15 14:20:47 (GMT) |
commit | 0aa74e10bb7697db00514d62269ff9cae7bd7af9 (patch) | |
tree | b145e6578fdc58f271131597c09462135b571508 /Lib/test/test_functools.py | |
parent | fa310ee3a950e32c94c378ba2aa790b517104fae (diff) | |
download | cpython-0aa74e10bb7697db00514d62269ff9cae7bd7af9.zip cpython-0aa74e10bb7697db00514d62269ff9cae7bd7af9.tar.gz cpython-0aa74e10bb7697db00514d62269ff9cae7bd7af9.tar.bz2 |
Issue #19681: Test the repr of partial with more than one keyword argument.
Diffstat (limited to 'Lib/test/test_functools.py')
-rw-r--r-- | Lib/test/test_functools.py | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py index 1012053..0375601c 100644 --- a/Lib/test/test_functools.py +++ b/Lib/test/test_functools.py @@ -155,9 +155,9 @@ class TestPartialC(TestPartial, unittest.TestCase): def test_repr(self): args = (object(), object()) args_repr = ', '.join(repr(a) for a in args) - #kwargs = {'a': object(), 'b': object()} - kwargs = {'a': object()} - kwargs_repr = ', '.join("%s=%r" % (k, v) for k, v in kwargs.items()) + kwargs = {'a': object(), 'b': object()} + kwargs_reprs = ['a={a!r}, b={b!r}'.format_map(kwargs), + 'b={b!r}, a={a!r}'.format_map(kwargs)] if self.partial is c_functools.partial: name = 'functools.partial' else: @@ -172,12 +172,14 @@ class TestPartialC(TestPartial, unittest.TestCase): repr(f)) f = self.partial(capture, **kwargs) - self.assertEqual('{}({!r}, {})'.format(name, capture, kwargs_repr), - repr(f)) + self.assertIn(repr(f), + ['{}({!r}, {})'.format(name, capture, kwargs_repr) + for kwargs_repr in kwargs_reprs]) f = self.partial(capture, *args, **kwargs) - self.assertEqual('{}({!r}, {}, {})'.format(name, capture, args_repr, kwargs_repr), - repr(f)) + self.assertIn(repr(f), + ['{}({!r}, {}, {})'.format(name, capture, args_repr, kwargs_repr) + for kwargs_repr in kwargs_reprs]) def test_pickle(self): f = self.partial(signature, 'asdf', bar=True) |