Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/bleach/six_shim.py: 100%

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

13 statements  

1""" 

2Replacement module for what html5lib uses six for. 

3""" 

4 

5import http.client 

6import operator 

7import urllib 

8 

9 

10PY3 = True 

11binary_type = bytes 

12string_types = (str,) 

13text_type = str 

14unichr = chr 

15viewkeys = operator.methodcaller("keys") 

16 

17http_client = http.client 

18urllib = urllib 

19urllib_parse = urllib.parse