[Python-checkins] cpython: Issue #19681: Apply a quick and minimal band-aid.

christian.heimes python-checkins at python.org
Fri Nov 22 01:22:57 CET 2013


http://hg.python.org/cpython/rev/18a44d65d34a
changeset:   87329:18a44d65d34a
user:        Christian Heimes <christian at cheimes.de>
date:        Fri Nov 22 01:22:47 2013 +0100
summary:
  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.

files:
  Lib/test/test_functools.py |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py
--- a/Lib/test/test_functools.py
+++ b/Lib/test/test_functools.py
@@ -154,7 +154,8 @@
     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'

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list