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
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
1"""
2Replacement module for what html5lib uses six for.
3"""
5import http.client
6import operator
7import urllib
10PY3 = True
11binary_type = bytes
12string_types = (str,)
13text_type = str
14unichr = chr
15viewkeys = operator.methodcaller("keys")
17http_client = http.client
18urllib = urllib
19urllib_parse = urllib.parse