[commit: ghc] wip/python3: Fixup tuple unpacking (1b8239d)
git at git.haskell.org
git at git.haskell.org
Sat Sep 20 23:21:16 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/python3
Link : http://ghc.haskell.org/trac/ghc/changeset/1b8239dd81c9668ecc08082f7b84cef7739dee32/ghc
>---------------------------------------------------------------
commit 1b8239dd81c9668ecc08082f7b84cef7739dee32
Author: Krzysztof Gogolewski <krz.gogolewski at gmail.com>
Date: Sun Sep 21 00:54:31 2014 +0200
Fixup tuple unpacking
>---------------------------------------------------------------
1b8239dd81c9668ecc08082f7b84cef7739dee32
testsuite/driver/runtests.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testsuite/driver/runtests.py b/testsuite/driver/runtests.py
index 7b01f7d..00a0b34 100644
--- a/testsuite/driver/runtests.py
+++ b/testsuite/driver/runtests.py
@@ -272,7 +272,7 @@ if config.list_broken:
global brokens
print('')
print('Broken tests:')
- print(' '.join(map (lambda b, d, n: '#' + str(b) + '(' + d + '/' + n + ')', brokens)))
+ print(' '.join(map (lambda bdn: '#' + str(bdn[0]) + '(' + bdn[1] + '/' + bdn[2] + ')', brokens)))
print('')
if t.n_framework_failures != 0:
More information about the ghc-commits
mailing list