[Python-checkins] cpython: The latest NumPy revision no longer segfaults here.

stefan.krah python-checkins at python.org
Sun Aug 19 12:59:25 CEST 2012


http://hg.python.org/cpython/rev/a31225651233
changeset:   78651:a31225651233
user:        Stefan Krah <skrah at bytereef.org>
date:        Sun Aug 19 12:54:50 2012 +0200
summary:
  The latest NumPy revision no longer segfaults here.

files:
  Lib/test/test_buffer.py |  6 ------
  1 files changed, 0 insertions(+), 6 deletions(-)


diff --git a/Lib/test/test_buffer.py b/Lib/test/test_buffer.py
--- a/Lib/test/test_buffer.py
+++ b/Lib/test/test_buffer.py
@@ -1848,9 +1848,6 @@
                         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 @@
                     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
 

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


More information about the Python-checkins mailing list