~ubuntu-branches/debian/experimental/h5py/experimental

« back to all changes in this revision

Viewing changes to docs/source/api/low/h5.rst

  • Committer: Bazaar Package Importer
  • Author(s): Soeren Sonnenburg
  • Date: 2009-09-24 11:08:03 UTC
  • mfrom: (2.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090924110803-hz0en6f43x8opgj4
Tags: 1.2.1-2
Build-depend on hdf5 >= 1.8.3 and enable api 1.8 (Closes: #548049)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Module H5
 
2
=========
 
3
 
 
4
.. automodule:: h5py.h5
 
5
 
 
6
Library API
 
7
-----------
 
8
 
 
9
.. autofunction:: get_config
 
10
.. autofunction:: get_phil
 
11
.. autofunction:: loglevel
 
12
.. autofunction:: get_libversion
 
13
 
 
14
 
 
15
Base classes for library
 
16
------------------------
 
17
 
 
18
.. autoclass:: ObjectID
 
19
.. autoclass:: H5Error
 
20
.. autoclass:: H5PYConfig
 
21
.. autoclass:: PHIL
 
22
 
 
23
 
 
24
Module constants
 
25
----------------
 
26
 
 
27
These constants are only available with HDF5 1.8.X.
 
28
 
 
29
.. data:: INDEX_NAME
 
30
 
 
31
    Resolve indices in alphanumeric order
 
32
 
 
33
.. data:: INDEX_CRT_ORDER
 
34
 
 
35
    Resolve indices in order of object creation.  Not always available.
 
36
 
 
37
.. data:: ITER_NATIVE
 
38
 
 
39
    Traverse index in the fastest possible order.  No particular pattern is
 
40
    guaranteed.
 
41
 
 
42
.. data:: ITER_INC
 
43
 
 
44
    Traverse index in increasing order
 
45
 
 
46
.. data:: ITER_DEC
 
47
 
 
48
    Traverse index in decreasing order
 
49
 
 
50
 
 
51