]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
The latest NumPy revision no longer segfaults here.
authorStefan Krah <skrah@bytereef.org>
Sun, 19 Aug 2012 10:54:50 +0000 (12:54 +0200)
committerStefan Krah <skrah@bytereef.org>
Sun, 19 Aug 2012 10:54:50 +0000 (12:54 +0200)
Lib/test/test_buffer.py

index c91f3c40a5b246d50c80332ac0983b49ad3cf764..80f43466fb0acb6bfe40b9239127dad6009aded8 100644 (file)
@@ -1848,9 +1848,6 @@ class TestBufferProtocol(unittest.TestCase):
                         self.assertEqual(mvlist, ylist)
 
                 if numpy_array:
-                    # XXX NumPy (as far as it compiles with 3.3) currently
-                    # segfaults here. Wait for a stable 3.3 compatible version.
-                    continue
                     shape = t[3]
                     if 0 in shape:
                         continue # http://projects.scipy.org/numpy/ticket/1910
@@ -1930,9 +1927,6 @@ class TestBufferProtocol(unittest.TestCase):
                     self.assertEqual(mr.tolist(), yrlist)
 
                 if numpy_array:
-                    # XXX NumPy (as far as it compiles with 3.3) currently
-                    # segfaults here. Wait for a stable 3.3 compatible version.
-                    continue
                     if 0 in lshape or 0 in rshape:
                         continue # http://projects.scipy.org/numpy/ticket/1910