Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/numpy/_utils/_convertions.py: 40%

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

10 statements  

1""" 

2A set of methods retained from np.compat module that 

3are still used across codebase. 

4""" 

5 

6__all__ = ["asunicode", "asbytes"] 

7 

8 

9def asunicode(s): 

10 if isinstance(s, bytes): 

11 return s.decode('latin1') 

12 return str(s) 

13 

14 

15def asbytes(s): 

16 if isinstance(s, bytes): 

17 return s 

18 return str(s).encode('latin1')