Hello PyTables Developers,
I'm having problems installing PyTables 2.1.2 on Windows 7 64 bit from the
binary (tables-2.1.2.win32-py2.6.exe).
I first installed Python 2.6.5, then the binary release of NumPy 1.3 (Version
1.4 has problems with H5Py), and finally PyTables 2.1.2. I've pasted the output
of tables.test() below.
Any thoughts? I tried tables-2.2rc1.win32-py2.6.exe but had trouble importing
pytables (at least with Numpy 1.4) and couldn't run the tests.
Best regards,
Tim
tables.test() output
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
PyTables version: 2.1.2
HDF5 version: 1.8.3
NumPy version: 1.3.0
Zlib version: 1.2.3
Python version: 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32
bit (Intel)]
Byte-ordering: little
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Performing only a light (yet comprehensive) subset of the test suite.
If you want a more complete test, try passing the --heavy flag to this
script (or set the 'heavy' parameter in case you are using tables.test()
call). The whole suite will take more than 2 minutes to complete on a
relatively modern CPU and around 80 MB of main memory.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Skipping Numeric test suite.
Skipping numarray test suite.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
C:\Python26\lib\site-packages\tables\filters.py:258: FiltersWarning:
compression library ``bzip2`` is not available; using ``zlib`` instead
% (complib, default_complib), FiltersWarning )
C:\Python26\lib\site-packages\tables\filters.py:258: FiltersWarning:
compression library ``lzo`` is not available; using ``zlib`` instead
% (complib, default_complib), FiltersWarning )
======================================================================
FAIL: Doctest: tables.filters.Filters._pack
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.filters.Filters._pack
File "C:\Python26\lib\site-packages\tables\filters.py", line 183, in _pack
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\filters.py", line 187, in
tables.filters.Filters._pack
Failed example:
type(Filters()._pack())
Expected:
<type 'numpy.int64'>
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\filters.py", line 190, in
tables.filters.Filters._pack
Failed example:
hexl(Filters()._pack())
Expected:
'0x0L'
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\filters.py", line 192, in
tables.filters.Filters._pack
Failed example:
hexl(Filters(1, shuffle=False)._pack())
Expected:
'0x101L'
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\filters.py", line 194, in
tables.filters.Filters._pack
Failed example:
hexl(Filters(9, 'zlib', shuffle=True, fletcher32=True)._pack())
Expected:
'0x30109L'
Got nothing
======================================================================
FAIL: Doctest: tables.filters.Filters._unpack
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.filters.Filters._unpack
File "C:\Python26\lib\site-packages\tables\filters.py", line 147, in _unpack
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\filters.py", line 151, in
tables.filters.Filters._unpack
Failed example:
Filters._unpack(0)
Expected:
Filters(complevel=0, shuffle=False, fletcher32=False)
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\filters.py", line 153, in
tables.filters.Filters._unpack
Failed example:
Filters._unpack(0x101)
Expected:
Filters(complevel=1, complib='zlib', shuffle=False, fletcher32=False)
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\filters.py", line 155, in
tables.filters.Filters._unpack
Failed example:
Filters._unpack(0x30109)
Expected:
Filters(complevel=9, complib='zlib', shuffle=True, fletcher32=True)
Got nothing
======================================================================
FAIL: Doctest: tables.filters.Filters.copy
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.filters.Filters.copy
File "C:\Python26\lib\site-packages\tables\filters.py", line 307, in copy
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\filters.py", line 320, in
tables.filters.Filters.copy
Failed example:
filters1 == filters2
Expected:
True
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\filters.py", line 322, in
tables.filters.Filters.copy
Failed example:
filters1 is filters2
Expected:
False
Got nothing
======================================================================
FAIL: Doctest: tables.atom.Atom
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.atom.Atom
File "C:\Python26\lib\site-packages\tables\atom.py", line 234, in Atom
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 299, in
tables.atom.Atom
Failed example:
atom1 == 'foo'
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 301, in
tables.atom.Atom
Failed example:
atom1 == atom2
Expected:
True
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 303, in
tables.atom.Atom
Failed example:
atom2 != atom1
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 305, in
tables.atom.Atom
Failed example:
atom1 == atom3
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 307, in
tables.atom.Atom
Failed example:
atom3 != atom2
Expected:
True
Got nothing
======================================================================
FAIL: Doctest: tables.atom.Atom.copy
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.atom.Atom.copy
File "C:\Python26\lib\site-packages\tables\atom.py", line 544, in copy
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 557, in
tables.atom.Atom.copy
Failed example:
atom1 is atom2
Expected:
False
Got nothing
======================================================================
FAIL: Doctest: tables.atom.Atom.from_dtype
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.atom.Atom.from_dtype
File "C:\Python26\lib\site-packages\tables\atom.py", line 385, in from_dtype
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 394, in
tables.atom.Atom.from_dtype
Failed example:
Atom.from_dtype(numpy.dtype((numpy.int16, (2, 2))))
Expected:
Int16Atom(shape=(2, 2), dflt=0)
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 396, in
tables.atom.Atom.from_dtype
Failed example:
Atom.from_dtype(numpy.dtype('S5'), dflt='hello')
Expected:
StringAtom(itemsize=5, shape=(), dflt='hello')
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 398, in
tables.atom.Atom.from_dtype
Failed example:
Atom.from_dtype(numpy.dtype('Float64'))
Expected:
Float64Atom(shape=(), dflt=0.0)
Got nothing
======================================================================
FAIL: Doctest: tables.atom.Atom.from_kind
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.atom.Atom.from_kind
File "C:\Python26\lib\site-packages\tables\atom.py", line 441, in from_kind
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 449, in
tables.atom.Atom.from_kind
Failed example:
Atom.from_kind('int', itemsize=2, shape=(2, 2))
Expected:
Int16Atom(shape=(2, 2), dflt=0)
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 451, in
tables.atom.Atom.from_kind
Failed example:
Atom.from_kind('int', shape=(2, 2))
Expected:
Int32Atom(shape=(2, 2), dflt=0)
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 453, in
tables.atom.Atom.from_kind
Failed example:
Atom.from_kind('int', shape=1)
Expected:
Int32Atom(shape=(1,), dflt=0)
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 455, in
tables.atom.Atom.from_kind
Failed example:
Atom.from_kind('string', itemsize=5, dflt='hello')
Expected:
StringAtom(itemsize=5, shape=(), dflt='hello')
Got nothing
======================================================================
FAIL: Doctest: tables.atom.Atom.from_sctype
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.atom.Atom.from_sctype
File "C:\Python26\lib\site-packages\tables\atom.py", line 359, in
from_sctype
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 368, in
tables.atom.Atom.from_sctype
Failed example:
Atom.from_sctype(numpy.int16, shape=(2, 2))
Expected:
Int16Atom(shape=(2, 2), dflt=0)
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 374, in
tables.atom.Atom.from_sctype
Failed example:
Atom.from_sctype('Float64')
Expected:
Float64Atom(shape=(), dflt=0.0)
Got nothing
======================================================================
FAIL: Doctest: tables.atom.Atom.from_type
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.atom.Atom.from_type
File "C:\Python26\lib\site-packages\tables\atom.py", line 415, in from_type
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 422, in
tables.atom.Atom.from_type
Failed example:
Atom.from_type('bool')
Expected:
BoolAtom(shape=(), dflt=False)
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 424, in
tables.atom.Atom.from_type
Failed example:
Atom.from_type('int16', shape=(2, 2))
Expected:
Int16Atom(shape=(2, 2), dflt=0)
Got nothing
======================================================================
FAIL: Doctest: tables.atom.EnumAtom
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.atom.EnumAtom
File "C:\Python26\lib\site-packages\tables\atom.py", line 762, in EnumAtom
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 802, in
tables.atom.EnumAtom
Failed example:
atom1 == enum
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 804, in
tables.atom.EnumAtom
Failed example:
atom1 == atom2
Expected:
True
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 806, in
tables.atom.EnumAtom
Failed example:
atom2 != atom1
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 808, in
tables.atom.EnumAtom
Failed example:
atom1 == atom3
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 810, in
tables.atom.EnumAtom
Failed example:
atom1 == atom4
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 812, in
tables.atom.EnumAtom
Failed example:
atom4 != atom1
Expected:
True
Got nothing
======================================================================
FAIL: Doctest: tables.atom.split_type
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.atom.split_type
File "C:\Python26\lib\site-packages\tables\atom.py", line 72, in split_type
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 80, in
tables.atom.split_type
Failed example:
split_type('int32')
Expected:
('int', 4)
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\atom.py", line 82, in
tables.atom.split_type
Failed example:
split_type('string')
Expected:
('string', None)
Got nothing
======================================================================
FAIL: Doctest: tables.misc.enum.Enum
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.misc.enum.Enum
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 39, in Enum
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 73, in
tables.misc.enum.Enum
Failed example:
priority == prio2
Expected:
True
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 90, in
tables.misc.enum.Enum
Failed example:
redv == priority['red']
Expected:
True
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 92, in
tables.misc.enum.Enum
Failed example:
redv > priority.green
Expected:
True
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 94, in
tables.misc.enum.Enum
Failed example:
priority.red == priority.orange
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 102, in
tables.misc.enum.Enum
Failed example:
priority(redv)
Expected:
'red'
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 104, in
tables.misc.enum.Enum
Failed example:
priority.red == priority[priority(priority.red)]
Expected:
True
Got nothing
======================================================================
FAIL: Doctest: tables.misc.enum.Enum.__call__
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.misc.enum.Enum.__call__
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 284,
in __call__
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 304, in
tables.misc.enum.Enum.__call__
Failed example:
enum(5)
Expected:
'T2'
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 306, in
tables.misc.enum.Enum.__call__
Failed example:
enum(42, None) is None
Expected:
True
Got nothing
======================================================================
FAIL: Doctest: tables.misc.enum.Enum.__contains__
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.misc.enum.Enum.__contains__
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 243, in
__contains__
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 264, in
tables.misc.enum.Enum.__contains__
Failed example:
'T1' in enum
Expected:
True
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 266, in
tables.misc.enum.Enum.__contains__
Failed example:
'foo' in enum
Expected:
False
Got nothing
======================================================================
FAIL: Doctest: tables.misc.enum.Enum.__eq__
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.misc.enum.Enum.__eq__
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 358,
in __eq__
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 380, in
tables.misc.enum.Enum.__eq__
Failed example:
enum1 == enum1
Expected:
True
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 382, in
tables.misc.enum.Enum.__eq__
Failed example:
enum1 == enum2 == enum3
Expected:
True
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 384, in
tables.misc.enum.Enum.__eq__
Failed example:
enum1 == enum4
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 386, in
tables.misc.enum.Enum.__eq__
Failed example:
enum5 == enum1
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 388, in
tables.misc.enum.Enum.__eq__
Failed example:
enum1 == enum6
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 394, in
tables.misc.enum.Enum.__eq__
Failed example:
enum1 == {'T0': 0, 'T1': 2}
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 396, in
tables.misc.enum.Enum.__eq__
Failed example:
enum1 == ['T0', 'T1']
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 398, in
tables.misc.enum.Enum.__eq__
Failed example:
enum1 == 2
Expected:
False
Got nothing
======================================================================
FAIL: Doctest: tables.misc.enum.Enum.__getattr__
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.misc.enum.Enum.__getattr__
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 202,
in __getattr__
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 219, in
tables.misc.enum.Enum.__getattr__
Failed example:
enum.T1
Expected:
2
Got nothing
======================================================================
FAIL: Doctest: tables.misc.enum.Enum.__getitem__
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.misc.enum.Enum.__getitem__
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 161,
in __getitem__
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 178, in
tables.misc.enum.Enum.__getitem__
Failed example:
enum['T1']
Expected:
2
Got nothing
======================================================================
FAIL: Doctest: tables.misc.enum.Enum.__iter__
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.misc.enum.Enum.__iter__
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 337,
in __iter__
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 350, in
tables.misc.enum.Enum.__iter__
Failed example:
enumvals == enumdict
Expected:
True
Got nothing
======================================================================
FAIL: Doctest: tables.misc.enum.Enum.__len__
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.misc.enum.Enum.__len__
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 323,
in __len__
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 330, in
tables.misc.enum.Enum.__len__
Failed example:
len(Enum(['e%d' % i for i in range(10)]))
Expected:
10
Got nothing
======================================================================
FAIL: Doctest: tables.misc.enum.Enum.__ne__
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.misc.enum.Enum.__ne__
File "C:\Python26\lib\si
0: "Enum({'name': 10})"
te-packages\tables\misc\enum.py", line 407, in __ne__
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 429, in
tables.misc.enum.Enum.__ne__
Failed example:
enum1 != enum1
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 431, in
tables.misc.enum.Enum.__ne__
Failed example:
enum1 != enum2 != enum3
Expected:
False
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 433, in
tables.misc.enum.Enum.__ne__
Failed example:
enum1 != enum4
Expected:
True
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 435, in
tables.misc.enum.Enum.__ne__
Failed example:
enum5 != enum1
Expected:
True
Got nothing
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 437, in
tables.misc.enum.Enum.__ne__
Failed example:
enum1 != enum6
Expected:
True
Got nothing
======================================================================
FAIL: Doctest: tables.misc.enum.Enum.__repr__
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python26\lib\doctest.py", line 2152, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for tables.misc.enum.Enum.__repr__
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 444,
in __repr__
----------------------------------------------------------------------
File "C:\Python26\lib\site-packages\tables\misc\enum.py", line 454, in
tables.misc.enum.Enum.__repr__
Failed example:
repr(Enum({'name': 10}))
Expected:
"Enum({'name': 10})"
Got nothing
----------------------------------------------------------------------
Ran 6517 tests in 64.969s
FAILED (failures=21)
------------------------------------------------------------------------------
ThinkGeek and WIRED's GeekDad team up for the Ultimate
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
lucky parental unit. See the prize list and enter to win:
http://p.sf.net/sfu/thinkgeek-promo
_______________________________________________
Pytables-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pytables-users