Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/starkbank_ecdsa-2.2.0-py3.11.egg/ellipticcurve/utils/file.py: 43%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1 

2 

3class File: 

4 

5 @classmethod 

6 def read(cls, path, mode="r"): 

7 with open(path, mode) as blob: 

8 content = blob.read() 

9 return content