mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-06 11:09:57 -08:00
43e71d836a
* Bump requests from 2.31.0 to 2.32.3 Bumps [requests](https://github.com/psf/requests) from 2.31.0 to 2.32.3. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.31.0...v2.32.3) --- updated-dependencies: - dependency-name: requests dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update requests==2.32.3 --------- 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]
24 lines
904 B
Python
24 lines
904 B
Python
import sys
|
|
|
|
from .compat import chardet
|
|
|
|
# This code exists for backwards compatibility reasons.
|
|
# I don't like it either. Just look the other way. :)
|
|
|
|
for package in ("urllib3", "idna"):
|
|
locals()[package] = __import__(package)
|
|
# This traversal is apparently necessary such that the identities are
|
|
# preserved (requests.packages.urllib3.* is urllib3.*)
|
|
for mod in list(sys.modules):
|
|
if mod == package or mod.startswith(f"{package}."):
|
|
sys.modules[f"requests.packages.{mod}"] = sys.modules[mod]
|
|
|
|
if chardet is not None:
|
|
target = chardet.__name__
|
|
for mod in list(sys.modules):
|
|
if mod == target or mod.startswith(f"{target}."):
|
|
imported_mod = sys.modules[mod]
|
|
sys.modules[f"requests.packages.{mod}"] = imported_mod
|
|
mod = mod.replace(target, "chardet")
|
|
sys.modules[f"requests.packages.{mod}"] = imported_mod
|