Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/fsspec/exceptions.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2023-12-08 06:40 +0000

1""" 

2fsspec user-defined exception classes 

3""" 

4import asyncio 

5 

6 

7class BlocksizeMismatchError(ValueError): 

8 """ 

9 Raised when a cached file is opened with a different blocksize than it was 

10 written with 

11 """ 

12 

13 ... 

14 

15 

16class FSTimeoutError(asyncio.TimeoutError): 

17 """ 

18 Raised when a fsspec function timed out occurs 

19 """ 

20 

21 ...