Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python-tables-doc | Distribution: openSUSE:Factory:zSystems |
Version: 3.4.4 | Vendor: obs://build.opensuse.org/openSUSE:Factory:zSystems |
Release: 3.5 | Build date: Wed Jun 26 22:02:47 2019 |
Group: Development/Languages/Python | Build host: s390p25 |
Size: 16328941 | Source RPM: python-tables-3.4.4-3.5.src.rpm |
Url: https://github.com/PyTables/PyTables | |
Summary: Documentation for python-tables |
Documentation and help files for python-tables
BSD-3-Clause
* Wed Feb 13 2019 Todd R <toddrme2178@gmail.com> - Add patches for numpy 1.16 compatibility: * pytables_fix_exception_check.patch from: https://github.com/PyTables/PyTables/commit/46fa2f07c00613ed6b647b2cf44e388f547fe668 * pytables_no_unsafe_write.patch from: https://github.com/PyTables/PyTables/commit/f6b64c942fb91e6c261fa455969a38482c22beeb * Fri Aug 10 2018 tchvatal@suse.com - Drop python-unittest2 dependency it was needed only on py2.6 * Wed Jun 13 2018 toddrme2178@gmail.com - Update to 3.4.4 + Improvements * Environment variable to control the use of embedded libraries. * Include citation in repository. + Bugs fixed * Fixed import error with numexpr 2.6.5.dev0 * Fixed linter warnings. * Fixed for re.split() is version detection. * Fixed test failures with Python 2.7 and NumPy 1.14.3 - Remove upstream-included initRecArray_tuples.patch * Thu May 03 2018 toddrme2178@gmail.com - Add initRecArray_tuples.patch Upstream bug report: https://github.com/PyTables/PyTables/issues/688 From: https://github.com/PyTables/PyTables/pull/689 Should be in next release * Wed May 02 2018 tchvatal@suse.com - Version update to 3.4.3: * On interactive python sessions, group/attribute __dir__() method autocompletes children that are named as valid python identifiers. * Implement Group.__getitem__() to have groups act as python-containers, so code like this works: hfile.root['some child']. * Enable building with Intel compiler (icc/icpc). * PEP 519 support, using new os.fspath method. * Optional disable recording of ctime (metadata creation time) when creating datasets that makes possible to get bitwise identical output from repeated runs. * Prevent from reading all rows for each coord in a VLArray when indexing using a list . * Fixed division by zero when using _convert_time64() with an empty nparr array. * Fixed deprecation warnings with numpy 1.14. * Skip DLL check when running from a frozen app. * Fixed behaviour with slices out of range. - Drop merged patch fix_numpy_recarray.patch - Add patch Never-use-the-msse2-flag-explicitly.patch to avoid using msse2 and avx on buildbots that support it, as we can be on non avx machines... * Mon Feb 26 2018 toddrme2178@gmail.com - Add fix_numpy_recarray.patch Fixes issues with recarrays under numpy 1.14. Patch accepted upstream. Should be in next release. From: https://github.com/PyTables/PyTables/pull/664 * Tue Apr 25 2017 toddrme2178@gmail.com - Update to version 3.4.2 + Improvements * setup.py detects conda env and uses installed conda (hdf5, bzip2, lzo and/or blosc) packages when building from source. + Bugs fixed * Linux wheels now built against built-in blosc. * Fixed windows absolute paths in ptrepack, ptdump, ptree. :issue:`616`. Thanks to oscar6echo. - Update to version 3.4.1 + Bugs fixed * Fixed bug in ptrepack - Switch to hdf5 1.10 series. - Implement single-spec version. * Thu Aug 25 2016 toddrme2178@gmail.com - hdf5_18 has been renamed to hdf5-1_8. * Tue Aug 16 2016 toddrme2178@gmail.com - update to version 3.2.3.1: * Fixed issues with pip install. - update to version 3.2.3: * Improvements + It is now possible to use HDF5 with the new shared library naming scheme (>= 1.8.10, hdf5.dll instead of hdf5dll.dll) on Windows (gh-540). Thanks to Tadeu Manoel. + Now :program: ptdump sorts output by node name and does not print a backtrace if file cannot be opened. Thanks to Zbigniew Jędrzejewski-Szmek. * Bugs fixed + Only run tables.tests.test_basics.UnicodeFilename if the filesystem encoding is utf-8. Closes gh-485. + Add lib64 to posix search path. (closes gh-507) Thanks to Mehdi Sadeghi. + Ensure cache entries are removed if fewer than 10 (closes gh-529). Thanks to Graham Jones. + Fix segmentation fault in a number of test cases that use index.Index (closes gh-532 and gh-533). Thanks to Diane Trout. + Fixed the evaluation of transcendental functions when numexpr is compiled with VML support (closes gh-534, PR #536). Thanks to Tom Kooij. + Make sure that index classes use buffersizes that are a multiple of chunkshape[0] (closes gh-538, PR #538). Thanks to Tom Kooij. + Ensure benchmark paths exist before benchmarks are executed (PR [#544]). Thanks to rohitjamuar. * Other changes + Minimum Cython version is now v0.21 - specfile: * add python-py-cpuinfo to build requirements * depend on hdf5_18-devel, since pytables is not compatible with hdf5 >= 1.10 * Mon Aug 15 2016 toddrme2178@gmail.com - Fix update-alternatives implementation. * Mon Feb 01 2016 toddrme2178@gmail.com - update to version 3.2.2: * Fix AssertionError in Row.__init_loop. See gh-477. * Fix issues with Cython 0.23. See gh-481. * Only run tables.tests.test_basics.UnicodeFilename if the filesystem encoding is utf-8. Closes gh-485. * Fix missing missing PyErr_Clear. See gh-#486. * Fix the C type of some numpy attributes. See gh-494. * Cast selection indices to integer. See gh-496. * Fix indexesextension._keysort_string. Closes gh-497 and gh-498. - changes from version 3.2.1.1: * Fix permission on distributed source distribution - update to version 3.2.1: * Fix indexesextension._keysort. Fixes gh-455. Thanks to Andrew Lin. - Implement update-alternatives * Thu May 14 2015 benoit.monin@gmx.fr - update to version 3.2.0: Improvements * The nrowsinbuf is better computed now for EArray/CArray having a small chunkshape in the main dimension. Fixes #285. * PyTables should be installable very friendly via pip, including NumPy being installed automatically in the unlikely case it is not yet installed in the system. Thanks to Andrea Bedini. * setup.py has been largely simplified and now it requires setuptools. Although we think this is a good step, please keep us informed this is breaking some installation in a very bad manner. * setup.py now is able to used pkg-config, if available, to locate required libraries (hdf5, bzip2, etc.). The use of pkg-config can be controlled via setup.py command line flags or via environment variables. Please refer to the installation guide (in the User Manual) for details. Closes gh-442. * It is now possible to create a new node whose parent is a softlink to another group (see gh-422). Thanks to Alistair Muldal. * link.SoftLink objects no longer need to be explicitly dereferenced. Methods and attributes of the linked object are now automatically accessed when the user acts on a soft-link (see gh-399). Thanks to Alistair Muldal. * Now ptrepack recognizes hardlinks and replicates them in the output (repacked) file. This saves disk space and makes repacked files more conformal to the original one. Closes gh-380. * New pttree script for printing HDF5 file contents as a pretty ASCII tree (closes gh-400). Thanks to Alistair Muldal. * The internal Blosc library has been downgraded to version 1.4.4. This is in order to still allow using multiple threads inside Blosc, even on multithreaded applications (see gh-411, gh-412, gh-437 and gh-448). * The print_versions() function now also reports the version of compression libraries used by Blosc. * Now the setup.py tries to use the ‘-march=native’ C flag by default. In falls back on ‘-msse2’ if ‘-march=native’ is not supported by the compiler. Closes gh-379. * Fixed a spurious unicode comparison warning (closes gh-372 and gh-373). * Improved handling of empty string attributes. In previous versions of PyTables empty string were stored as scalar HDF5 attributes having size 1 and value ‘0’ (an empty null terminated string). Now empty string are stored as HDF5 attributes having zero size * Added a new cookbook recipe and a couple of examples for simple threading with PyTables. * The redundant utilsextension.get_indices() function has been eliminated (replaced by slice.indices()). Closes gh-195. * Allow negative indices in point selection (closes gh-360) * Index wasn’t being used if it claimed there were no results. Closes gh-351 (see also gh-353) * Atoms and Col types are no longer generated dynamically so now it is easier for IDEs and static analysis tool to handle them (closes gh-345) * The keysort functions in idx-opt.c have been cythonised using fused types. The perfomance is mostly unchanged, but the code is much more simpler now. Thanks to Andrea Bedini. * Small unit tests re-factoring Bugs fixed * Fixed compatibility problems with numpy 1.9 and 1.10-dev (closes gh-362 and gh-366) * Fixed compatibility with Cython >= 0.20 (closes gh-386 and gh-387) * Fixed support for unicode node names in LRU cache (only Python 2 was affected). Closes gh-367 and gh-369. * Fixed support for unicode node titles (only Python 2 was affected). Closes gh-370 and gh-374. * Fixed a bug that caused the silent truncation of unicode attributes containing the ‘0’ character. Closes gh-371. * Fixed descr_from_dtype() to work as expected with complex types. Closes gh-381. * Fixed the tests.test_basics.ThreadingTestCase test case. Closes gh-359. * Fix incomplete results when performing the same query twice and exhausting the second iterator before the first. The first one writes incomplete results to seqcache (gh-353) * Fix false results potentially going to seqcache if tableextension.Row.update() is used during iteration (see gh-353) * Fix Column.create_csindex() when there’s NaNs * Fixed handling of unicode file names on windows (closes gh-389) * No longer not modify sys.argv at import time (closes gh-405) * Fixed a performance issue on NFS (closes gh-402) * Fixed a nasty problem affecting results of indexed queries. Closes gh-319 and probably gh-419 too. * Fixed another problem affecting results of indexed queries too. Closes gh-441. * Replaced “len(xrange(start, stop, step))” -> “len(xrange(0, stop - start, step))” to fix issues with large row counts with Python 2.x. Fixes #447. Other changes * Cython is not a hard dependency anymore (although developers will need it so as to generated the C extension code). * The number of threads used by default for numexpr and Blosc operation that was set to the number of available cores have been reduced to 2. This is a much more reasonable setting for not creating too much overhead. - add python-setuptools as a new build dependency - pass -q to %setup to avoid spamming the build log - rename README.txt to README.rst: changed upstream - add new binary pttree to the package
/usr/share/doc/packages/python-tables-doc /usr/share/doc/packages/python-tables-doc/examples /usr/share/doc/packages/python-tables-doc/examples/add-column.py /usr/share/doc/packages/python-tables-doc/examples/array1.py /usr/share/doc/packages/python-tables-doc/examples/array2.py /usr/share/doc/packages/python-tables-doc/examples/array3.py /usr/share/doc/packages/python-tables-doc/examples/array4.py /usr/share/doc/packages/python-tables-doc/examples/attributes1.py /usr/share/doc/packages/python-tables-doc/examples/carray1.py /usr/share/doc/packages/python-tables-doc/examples/check_examples.sh /usr/share/doc/packages/python-tables-doc/examples/earray1.py /usr/share/doc/packages/python-tables-doc/examples/earray2.py /usr/share/doc/packages/python-tables-doc/examples/enum.py /usr/share/doc/packages/python-tables-doc/examples/filenodes1.py /usr/share/doc/packages/python-tables-doc/examples/index.py /usr/share/doc/packages/python-tables-doc/examples/inmemory.py /usr/share/doc/packages/python-tables-doc/examples/links.py /usr/share/doc/packages/python-tables-doc/examples/multiprocess_access_benchmarks.py /usr/share/doc/packages/python-tables-doc/examples/multiprocess_access_queues.py /usr/share/doc/packages/python-tables-doc/examples/nested-tut.py /usr/share/doc/packages/python-tables-doc/examples/nested1.py /usr/share/doc/packages/python-tables-doc/examples/objecttree.py /usr/share/doc/packages/python-tables-doc/examples/particles.py /usr/share/doc/packages/python-tables-doc/examples/read_array_out_arg.py /usr/share/doc/packages/python-tables-doc/examples/simple_threading.py /usr/share/doc/packages/python-tables-doc/examples/split.py /usr/share/doc/packages/python-tables-doc/examples/table-tree.py /usr/share/doc/packages/python-tables-doc/examples/table1.py /usr/share/doc/packages/python-tables-doc/examples/table2.py /usr/share/doc/packages/python-tables-doc/examples/table3.py /usr/share/doc/packages/python-tables-doc/examples/threading_monkeypatch.py /usr/share/doc/packages/python-tables-doc/examples/tutorial1-1.py /usr/share/doc/packages/python-tables-doc/examples/tutorial1-2.py /usr/share/doc/packages/python-tables-doc/examples/tutorial2.py /usr/share/doc/packages/python-tables-doc/examples/tutorial3-1.py /usr/share/doc/packages/python-tables-doc/examples/tutorial3-2.py /usr/share/doc/packages/python-tables-doc/examples/undo-redo.py /usr/share/doc/packages/python-tables-doc/examples/vlarray1.py /usr/share/doc/packages/python-tables-doc/examples/vlarray2.py /usr/share/doc/packages/python-tables-doc/examples/vlarray3.py /usr/share/doc/packages/python-tables-doc/examples/vlarray4.py /usr/share/doc/packages/python-tables-doc/html /usr/share/doc/packages/python-tables-doc/html/.buildinfo /usr/share/doc/packages/python-tables-doc/html/FAQ.html /usr/share/doc/packages/python-tables-doc/html/MIGRATING_TO_2.x.html /usr/share/doc/packages/python-tables-doc/html/MIGRATING_TO_3.x.html /usr/share/doc/packages/python-tables-doc/html/_downloads /usr/share/doc/packages/python-tables-doc/html/_downloads/6b0e74dd590b9e15b20831c26b8382e7 /usr/share/doc/packages/python-tables-doc/html/_downloads/6b0e74dd590b9e15b20831c26b8382e7/simple_threading.py /usr/share/doc/packages/python-tables-doc/html/_downloads/b6b0faabb08330e743031c7ac22784b2 /usr/share/doc/packages/python-tables-doc/html/_downloads/b6b0faabb08330e743031c7ac22784b2/threading_monkeypatch.py /usr/share/doc/packages/python-tables-doc/html/_downloads/bc55db5c10ee51ff2f0c58dbfabd99ea /usr/share/doc/packages/python-tables-doc/html/_downloads/bc55db5c10ee51ff2f0c58dbfabd99ea/pytables_test.py /usr/share/doc/packages/python-tables-doc/html/_images /usr/share/doc/packages/python-tables-doc/html/_images/NumFocusSponsoredStamp.png /usr/share/doc/packages/python-tables-doc/html/_images/Q7-10m-noidx.png /usr/share/doc/packages/python-tables-doc/html/_images/Q8-1g-idx-SSD.png /usr/share/doc/packages/python-tables-doc/html/_images/Q8-1g-idx-compress.png /usr/share/doc/packages/python-tables-doc/html/_images/Q8-1g-idx-optlevels.png /usr/share/doc/packages/python-tables-doc/html/_images/Q8-1g-idx-sorted.png /usr/share/doc/packages/python-tables-doc/html/_images/Q8-1g-noidx.png /usr/share/doc/packages/python-tables-doc/html/_images/compressed-recordsize-shuffle.png /usr/share/doc/packages/python-tables-doc/html/_images/compressed-recordsize-zlib.png /usr/share/doc/packages/python-tables-doc/html/_images/compressed-recordsize.png /usr/share/doc/packages/python-tables-doc/html/_images/compressed-select-cache-shuffle.png /usr/share/doc/packages/python-tables-doc/html/_images/compressed-select-cache-zlib.png /usr/share/doc/packages/python-tables-doc/html/_images/compressed-select-cache.png /usr/share/doc/packages/python-tables-doc/html/_images/compressed-select-nocache-shuffle-only.png /usr/share/doc/packages/python-tables-doc/html/_images/compressed-select-nocache.png /usr/share/doc/packages/python-tables-doc/html/_images/compressed-writing-shuffle.png /usr/share/doc/packages/python-tables-doc/html/_images/compressed-writing-zlib.png /usr/share/doc/packages/python-tables-doc/html/_images/compressed-writing.png /usr/share/doc/packages/python-tables-doc/html/_images/create-chunksize-15GB.png /usr/share/doc/packages/python-tables-doc/html/_images/create-index-time-int32-float64.png /usr/share/doc/packages/python-tables-doc/html/_images/filesizes-chunksize-15GB.png /usr/share/doc/packages/python-tables-doc/html/_images/indexes-sizes2.png /usr/share/doc/packages/python-tables-doc/html/_images/objecttree-h5.png /usr/share/doc/packages/python-tables-doc/html/_images/objecttree.svg /usr/share/doc/packages/python-tables-doc/html/_images/random-chunksize-15GB.png /usr/share/doc/packages/python-tables-doc/html/_images/read-medium-psyco-nopsyco-comparison.png /usr/share/doc/packages/python-tables-doc/html/_images/seq-chunksize-15GB.png /usr/share/doc/packages/python-tables-doc/html/_images/tutorial1-1-tableview.png /usr/share/doc/packages/python-tables-doc/html/_images/tutorial1-2-tableview.png /usr/share/doc/packages/python-tables-doc/html/_images/tutorial1-general.png /usr/share/doc/packages/python-tables-doc/html/_images/tutorial2-tableview.png /usr/share/doc/packages/python-tables-doc/html/_images/write-medium-psyco-nopsyco-comparison.png /usr/share/doc/packages/python-tables-doc/html/_modules /usr/share/doc/packages/python-tables-doc/html/_modules/index.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables /usr/share/doc/packages/python-tables-doc/html/_modules/tables/array.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/atom.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/attributeset.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/carray.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/description.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/earray.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/exceptions.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/expression.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/file.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/filters.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/flavor.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/group.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/index.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/indexes.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/leaf.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/link.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/misc /usr/share/doc/packages/python-tables-doc/html/_modules/tables/misc/enum.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/node.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/nodes /usr/share/doc/packages/python-tables-doc/html/_modules/tables/nodes/filenode.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/table.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/tests /usr/share/doc/packages/python-tables-doc/html/_modules/tables/tests/common.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/tests/test_all.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/unimplemented.html /usr/share/doc/packages/python-tables-doc/html/_modules/tables/vlarray.html /usr/share/doc/packages/python-tables-doc/html/_sources /usr/share/doc/packages/python-tables-doc/html/_sources/FAQ.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/MIGRATING_TO_2.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/MIGRATING_TO_3.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/cookbook /usr/share/doc/packages/python-tables-doc/html/_sources/cookbook/custom_data_types.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/cookbook/hints_for_sql_users.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/cookbook/index.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/cookbook/inmemory_hdf5_files.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/cookbook/no_root_install.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/cookbook/py2exe_howto.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/cookbook/simple_table.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/cookbook/tailoring_atexit_hooks.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/cookbook/threading.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/dev_team.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/development.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/downloads.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/index.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/irclogs.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/other_material.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/project_pointers.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v0.7.1.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v0.7.2.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v0.8.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v0.9.1.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v0.9.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.0.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.1.1.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.1.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.2.1.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.2.2.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.2.3.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.2.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.3.1.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.3.2.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.3.3.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.3.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v1.4.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v2.0.x-pro.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v2.0.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v2.1.x-pro.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v2.1.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v2.2.x-pro.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v2.2.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v2.3.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v2.4.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v3.0.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v3.1.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v3.2.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v3.3.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release-notes/RELEASE_NOTES_v3.4.x.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/release_notes.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/bibliography.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/condition_syntax.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/datatypes.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/file_format.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/filenode.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/index.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/installation.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/introduction.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref/declarative_classes.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref/expr_class.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref/file_class.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref/filenode_classes.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref/helper_classes.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref/hierarchy_classes.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref/homogenous_storage.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref/link_classes.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref/structured_storage.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/libref/top_level.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/optimization.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/parameter_files.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/tutorials.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/usersguide.rst.txt /usr/share/doc/packages/python-tables-doc/html/_sources/usersguide/utilities.rst.txt /usr/share/doc/packages/python-tables-doc/html/_static /usr/share/doc/packages/python-tables-doc/html/_static/basic.css /usr/share/doc/packages/python-tables-doc/html/_static/css /usr/share/doc/packages/python-tables-doc/html/_static/css/badge_only.css /usr/share/doc/packages/python-tables-doc/html/_static/css/theme.css /usr/share/doc/packages/python-tables-doc/html/_static/doctools.js /usr/share/doc/packages/python-tables-doc/html/_static/documentation_options.js /usr/share/doc/packages/python-tables-doc/html/_static/file.png /usr/share/doc/packages/python-tables-doc/html/_static/fonts /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-bold.eot /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-bold.ttf /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-bold.woff /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-bold.woff2 /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-bolditalic.eot /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-bolditalic.ttf /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-bolditalic.woff /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-bolditalic.woff2 /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-italic.eot /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-italic.ttf /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-italic.woff /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-italic.woff2 /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-regular.eot /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-regular.ttf /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-regular.woff /usr/share/doc/packages/python-tables-doc/html/_static/fonts/Lato/lato-regular.woff2 /usr/share/doc/packages/python-tables-doc/html/_static/fonts/RobotoSlab /usr/share/doc/packages/python-tables-doc/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot /usr/share/doc/packages/python-tables-doc/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf /usr/share/doc/packages/python-tables-doc/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff /usr/share/doc/packages/python-tables-doc/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 /usr/share/doc/packages/python-tables-doc/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot /usr/share/doc/packages/python-tables-doc/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf /usr/share/doc/packages/python-tables-doc/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff /usr/share/doc/packages/python-tables-doc/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 /usr/share/doc/packages/python-tables-doc/html/_static/fonts/fontawesome-webfont.eot /usr/share/doc/packages/python-tables-doc/html/_static/fonts/fontawesome-webfont.svg /usr/share/doc/packages/python-tables-doc/html/_static/fonts/fontawesome-webfont.ttf /usr/share/doc/packages/python-tables-doc/html/_static/fonts/fontawesome-webfont.woff /usr/share/doc/packages/python-tables-doc/html/_static/fonts/fontawesome-webfont.woff2 /usr/share/doc/packages/python-tables-doc/html/_static/graphviz.css /usr/share/doc/packages/python-tables-doc/html/_static/jquery-3.2.1.js /usr/share/doc/packages/python-tables-doc/html/_static/jquery.js /usr/share/doc/packages/python-tables-doc/html/_static/js /usr/share/doc/packages/python-tables-doc/html/_static/js/modernizr.min.js /usr/share/doc/packages/python-tables-doc/html/_static/js/theme.js /usr/share/doc/packages/python-tables-doc/html/_static/language_data.js /usr/share/doc/packages/python-tables-doc/html/_static/logo-pytables-small.png /usr/share/doc/packages/python-tables-doc/html/_static/minus.png /usr/share/doc/packages/python-tables-doc/html/_static/plus.png /usr/share/doc/packages/python-tables-doc/html/_static/pygments.css /usr/share/doc/packages/python-tables-doc/html/_static/searchtools.js /usr/share/doc/packages/python-tables-doc/html/_static/underscore-1.3.1.js /usr/share/doc/packages/python-tables-doc/html/_static/underscore.js /usr/share/doc/packages/python-tables-doc/html/cookbook /usr/share/doc/packages/python-tables-doc/html/cookbook/custom_data_types.html /usr/share/doc/packages/python-tables-doc/html/cookbook/hints_for_sql_users.html /usr/share/doc/packages/python-tables-doc/html/cookbook/index.html /usr/share/doc/packages/python-tables-doc/html/cookbook/inmemory_hdf5_files.html /usr/share/doc/packages/python-tables-doc/html/cookbook/no_root_install.html /usr/share/doc/packages/python-tables-doc/html/cookbook/py2exe_howto.html /usr/share/doc/packages/python-tables-doc/html/cookbook/simple_table.html /usr/share/doc/packages/python-tables-doc/html/cookbook/tailoring_atexit_hooks.html /usr/share/doc/packages/python-tables-doc/html/cookbook/threading.html /usr/share/doc/packages/python-tables-doc/html/dev_team.html /usr/share/doc/packages/python-tables-doc/html/development.html /usr/share/doc/packages/python-tables-doc/html/downloads.html /usr/share/doc/packages/python-tables-doc/html/genindex.html /usr/share/doc/packages/python-tables-doc/html/index.html /usr/share/doc/packages/python-tables-doc/html/irclogs.html /usr/share/doc/packages/python-tables-doc/html/objects.inv /usr/share/doc/packages/python-tables-doc/html/other_material.html /usr/share/doc/packages/python-tables-doc/html/project_pointers.html /usr/share/doc/packages/python-tables-doc/html/py-modindex.html /usr/share/doc/packages/python-tables-doc/html/release-notes /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v0.7.1.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v0.7.2.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v0.8.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v0.9.1.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v0.9.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.0.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.1.1.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.1.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.2.1.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.2.2.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.2.3.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.2.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.3.1.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.3.2.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.3.3.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.3.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v1.4.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v2.0.x-pro.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v2.0.x.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v2.1.x-pro.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v2.1.x.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v2.2.x-pro.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v2.2.x.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v2.3.x.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v2.4.x.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v3.0.x.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v3.1.x.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v3.2.x.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v3.3.x.html /usr/share/doc/packages/python-tables-doc/html/release-notes/RELEASE_NOTES_v3.4.x.html /usr/share/doc/packages/python-tables-doc/html/release_notes.html /usr/share/doc/packages/python-tables-doc/html/search.html /usr/share/doc/packages/python-tables-doc/html/searchindex.js /usr/share/doc/packages/python-tables-doc/html/usersguide /usr/share/doc/packages/python-tables-doc/html/usersguide/bibliography.html /usr/share/doc/packages/python-tables-doc/html/usersguide/condition_syntax.html /usr/share/doc/packages/python-tables-doc/html/usersguide/datatypes.html /usr/share/doc/packages/python-tables-doc/html/usersguide/file_format.html /usr/share/doc/packages/python-tables-doc/html/usersguide/filenode.html /usr/share/doc/packages/python-tables-doc/html/usersguide/index.html /usr/share/doc/packages/python-tables-doc/html/usersguide/installation.html /usr/share/doc/packages/python-tables-doc/html/usersguide/introduction.html /usr/share/doc/packages/python-tables-doc/html/usersguide/libref /usr/share/doc/packages/python-tables-doc/html/usersguide/libref.html /usr/share/doc/packages/python-tables-doc/html/usersguide/libref/declarative_classes.html /usr/share/doc/packages/python-tables-doc/html/usersguide/libref/expr_class.html /usr/share/doc/packages/python-tables-doc/html/usersguide/libref/file_class.html /usr/share/doc/packages/python-tables-doc/html/usersguide/libref/filenode_classes.html /usr/share/doc/packages/python-tables-doc/html/usersguide/libref/helper_classes.html /usr/share/doc/packages/python-tables-doc/html/usersguide/libref/hierarchy_classes.html /usr/share/doc/packages/python-tables-doc/html/usersguide/libref/homogenous_storage.html /usr/share/doc/packages/python-tables-doc/html/usersguide/libref/link_classes.html /usr/share/doc/packages/python-tables-doc/html/usersguide/libref/structured_storage.html /usr/share/doc/packages/python-tables-doc/html/usersguide/libref/top_level.html /usr/share/doc/packages/python-tables-doc/html/usersguide/optimization.html /usr/share/doc/packages/python-tables-doc/html/usersguide/parameter_files.html /usr/share/doc/packages/python-tables-doc/html/usersguide/tutorials.html /usr/share/doc/packages/python-tables-doc/html/usersguide/usersguide.html /usr/share/doc/packages/python-tables-doc/html/usersguide/utilities.html /usr/share/licenses/python-tables-doc /usr/share/licenses/python-tables-doc/BLOSC.txt /usr/share/licenses/python-tables-doc/CLOUD-SPTHEME.txt /usr/share/licenses/python-tables-doc/FASTLZ.txt /usr/share/licenses/python-tables-doc/H5PY.txt /usr/share/licenses/python-tables-doc/HDF5.txt /usr/share/licenses/python-tables-doc/LICENSE.txt /usr/share/licenses/python-tables-doc/LZ4.txt /usr/share/licenses/python-tables-doc/SNAPPY.txt /usr/share/licenses/python-tables-doc/STDINT.txt /usr/share/licenses/python-tables-doc/WIN32PTHREADS.txt /usr/share/licenses/python-tables-doc/ZLIB.txt /usr/share/licenses/python-tables-doc/ZSTD.TXT /usr/share/licenses/python-tables-doc/_current_flavor
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Feb 23 00:25:23 2025