/usr/lib/python2.7/dist-packages/h5py/highlevel.py is in python-h5py 2.2.1-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # This file is part of h5py, a Python interface to the HDF5 library.
#
# http://www.h5py.org
#
# Copyright 2008-2013 Andrew Collette and contributors
#
# License: Standard 3-clause BSD; see "license.txt" for full license terms
# and contributor agreement.
from _hl import filters
from _hl.base import is_hdf5, HLObject
from _hl.files import File
from _hl.group import Group, SoftLink, ExternalLink, HardLink
from _hl.dataset import Dataset
from _hl.datatype import Datatype
from _hl.attrs import AttributeManager
|