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.4.0, created at 2024-01-03 07:57 +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. 

9 

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""" 

14 

15 

16class H5pyWarning(UserWarning): 

17 pass 

18 

19 

20class H5pyDeprecationWarning(H5pyWarning): 

21 pass