Hi Christoph,
thank you for reporting.

Can you please tell us which is the output of the attached script on
your machine?

thanks in advance



Il 07/07/2012 21:18, Christoph Gohlke ha scritto:
> Looks good. Only one test failure on win-amd64-py2.7 (attached).
> 
> Christoph
> 
> On 7/7/2012 11:47 AM, Antonio Valentino wrote:
>> -----BEGIN PGP SIGNED MESSAGE-----
>> Hash: SHA1
>>
>> ===========================
>> Announcing PyTables 2.4.0b1
>> ===========================
>>
[CUT]


-- 
Antonio Valentino


'''Expected output:

    HDF5-DIAG: Error detected in HDF5 (1.8.4-patch1) thread 140035763205888:
      #000: ../../../src/H5F.c line 1514 in H5Fopen(): unable to open file
        major: File accessability
        minor: Unable to open file
      #001: ../../../src/H5F.c line 1309 in H5F_open(): unable to read superblock
        major: File accessability
        minor: Read failed
      #002: ../../../src/H5Fsuper.c line 305 in H5F_super_read(): unable to find file signature
        major: File accessability
        minor: Not an HDF5 file
      #003: ../../../src/H5Fsuper.c line 153 in H5F_locate_signature(): unable to find a valid file signature
        major: Low-level I/O
        minor: Unable to initialize object

'''

import tables
filename = 'test_HDF5ErrorHandling_test_enable_messages.h5'
open(filename, 'wb').close()
tables.silenceHDF5Messages(False)
try:
    tables.openFile(filename)
except tables.HDF5ExtError, e:
    pass
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Pytables-users mailing list
Pytables-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pytables-users

Reply via email to