]> granicus.if.org Git - python/commitdiff
Issue #19681: Apply a quick and minimal band-aid.
authorChristian Heimes <christian@cheimes.de>
Fri, 22 Nov 2013 00:22:47 +0000 (01:22 +0100)
committerChristian Heimes <christian@cheimes.de>
Fri, 22 Nov 2013 00:22:47 +0000 (01:22 +0100)
The flaky buildbots make it hard to detect real issue. This is just a temporary fix until we agree
on a permanent solution.

Lib/test/test_functools.py

index 31c093b1f08cdded0fe6ec2d56f9f80e0a6ee12b..38c9713bf37aae9c59f542a15de19fc48f540e0c 100644 (file)
@@ -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'