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

9 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-07 07:14 +0000

1# https://infra.spec.whatwg.org/ 

2 

3import string 

4 

5# https://infra.spec.whatwg.org/commit-snapshots/59e0d16c1e3ba0e77c6a60bfc69a0929b8ffaa5d/#code-points 

6_ASCII_TAB_OR_NEWLINE = "\t\n\r" 

7_ASCII_WHITESPACE = "\t\n\x0c\r " 

8_C0_CONTROL = "".join(chr(n) for n in range(32)) 

9_C0_CONTROL_OR_SPACE = _C0_CONTROL + " " 

10_ASCII_DIGIT = string.digits 

11_ASCII_HEX_DIGIT = string.hexdigits 

12_ASCII_ALPHA = string.ascii_letters 

13_ASCII_ALPHANUMERIC = string.ascii_letters + string.digits