Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/h5py/h5py_warnings.py: 100%
5 statements
« prev ^ index » next coverage.py v7.3.2, created at 2023-10-05 06:32 +0000
« prev ^ index » next coverage.py v7.3.2, created at 2023-10-05 06:32 +0000
1# This file is part of h5py, a Python interface to the HDF5 library.
2#
3# http://www.h5py.org
4#
5# Copyright 2008-2013 Andrew Collette and contributors
6#
7# License: Standard 3-clause BSD; see "license.txt" for full license terms
8# and contributor agreement.
10"""
11 This module contains the warning classes for h5py. These classes are part of
12 the public API of h5py, and should be imported from this module.
13"""
16class H5pyWarning(UserWarning):
17 pass
20class H5pyDeprecationWarning(H5pyWarning):
21 pass