1af1383
diff -up Python-3.2.2/Lib/test/test_cmath.py.ppc Python-3.2.2/Lib/test/test_cmath.py
1af1383
--- Python-3.2.2/Lib/test/test_cmath.py.ppc	2011-12-07 23:43:55.000000000 +0100
1af1383
+++ Python-3.2.2/Lib/test/test_cmath.py	2011-12-07 23:49:44.000000000 +0100
1af1383
@@ -95,6 +95,7 @@ class CMathTests(unittest.TestCase):
1af1383
         self.assertFloatIdentical(x.real, y.real)
1af1383
         self.assertFloatIdentical(x.imag, y.imag)
1af1383
 
1af1383
+    @unittest.skip('Known failure on PPC: glibc bug https://bugzilla.redhat.com/show_bug.cgi?id=750811')
1af1383
     def rAssertAlmostEqual(self, a, b, rel_err = 2e-15, abs_err = 5e-323,
1af1383
                            msg=None):
1af1383
         """Fail if the two floating-point numbers are not almost equal.