Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d062892

Browse files
committed
Issue #19681: Apply a quick and minimal band-aid.
The flaky buildbots make it hard to detect real issue. This is just a temporary fix until we agree on a permanent solution.
1 parent 3591587 commit d062892

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/test/test_functools.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,8 @@ class TestPartialC(TestPartial, unittest.TestCase):
154154
def test_repr(self):
155155
args = (object(), object())
156156
args_repr = ', '.join(repr(a) for a in args)
157-
kwargs = {'a': object(), 'b': object()}
157+
#kwargs = {'a': object(), 'b': object()}
158+
kwargs = {'a': object()}
158159
kwargs_repr = ', '.join("%s=%r" % (k, v) for k, v in kwargs.items())
159160
if self.partial is c_functools.partial:
160161
name = 'functools.partial'

0 commit comments

Comments
 (0)