Coverage for /var/srv/projects/api.amasfac.comuna18.com/tmp/venv/lib/python3.9/site-packages/coreschema/compat.py: 62%

6 statements  

« prev     ^ index     » next       coverage.py v6.4.4, created at 2023-07-17 14:22 -0600

1import sys 

2 

3if sys.version_info.major == 2: 3 ↛ 4line 3 didn't jump to line 4, because the condition on line 3 was never true

4 text_types = (str, unicode) 

5 numeric_types = (float, int, long) 

6else: 

7 text_types = (str,) 

8 numeric_types = (float, int)