From: Christian Heimes Date: Fri, 22 Nov 2013 00:22:47 +0000 (+0100) Subject: Issue #19681: Apply a quick and minimal band-aid. X-Git-Tag: v3.4.0b1~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d06289254280f55536a765b1b5c36e6160b6c8e6;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py index 31c093b1f08c..38c9713bf37a 100644 --- a/Lib/test/test_functools.py +++ b/Lib/test/test_functools.py @@ -154,7 +154,8 @@ 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(), 'b': object()} + kwargs = {'a': object()} kwargs_repr = ', '.join("%s=%r" % (k, v) for k, v in kwargs.items()) if self.partial is c_functools.partial: name = 'functools.partial'