Report additional diagnostic information in
test_math, to help track down debian-alpha
buildbot failure.
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py
index 0d35130..4a54a6e 100644
--- a/Lib/test/test_math.py
+++ b/Lib/test/test_math.py
@@ -672,7 +672,12 @@
                 # no real versions of rect, polar
                 continue
             func = getattr(math, fn)
-            result = func(ar)
+            try:
+                result = func(ar)
+            except ValueError:
+                message = ("Unexpected ValueError in " +
+                           "test %s:%s(%r)\n" % (id, fn, ar))
+                self.fail(message)
             self.ftest("%s:%s(%r)" % (id, fn, ar), result, er)
 
 def test_main():