mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-06 11:09:57 -08:00
eb2c372d82
* Bump bleach from 6.1.0 to 6.2.0 Bumps [bleach](https://github.com/mozilla/bleach) from 6.1.0 to 6.2.0. - [Changelog](https://github.com/mozilla/bleach/blob/main/CHANGES) - [Commits](https://github.com/mozilla/bleach/compare/v6.1.0...v6.2.0) --- updated-dependencies: - dependency-name: bleach dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update bleach==6.2.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
20 lines
305 B
Python
20 lines
305 B
Python
"""
|
|
Replacement module for what html5lib uses six for.
|
|
"""
|
|
|
|
import http.client
|
|
import operator
|
|
import urllib
|
|
|
|
|
|
PY3 = True
|
|
binary_type = bytes
|
|
string_types = (str,)
|
|
text_type = str
|
|
unichr = chr
|
|
viewkeys = operator.methodcaller("keys")
|
|
|
|
http_client = http.client
|
|
urllib = urllib
|
|
urllib_parse = urllib.parse
|