#48557: py27-pandas crashes with blosc ------------------------+------------------------ Reporter: dersh@… | Owner: stromnov@… Type: defect | Status: new Priority: Normal | Milestone: Component: ports | Version: 2.3.3 Resolution: | Keywords: Port: py-pandas | ------------------------+------------------------ Comment (by stromnov@…): Example from pytables documentation (leads to crash in py-tables 3.2 and 3.2.1): {{{ import numpy from tables import * fileh = open_file('test5.h5', mode='w') atom = Float32Atom() filters = Filters(complevel=1, complib='blosc', fletcher32=True) arr = fileh.create_earray(fileh.root, 'earray', atom, (0,2), "A growable array", filters=filters) # Append several rows in only one call arr.append(numpy.array([[1., 2.], [2., 3.], [3., 4.]], dtype=numpy.float32)) # Print information on that enlargeable array print("Result Array:") print(repr(arr)) fileh.close() }}} -- Ticket URL: <https://trac.macports.org/ticket/48557#comment:5> MacPorts <https://www.macports.org/> Ports system for OS X