You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
733 B
17 lines
733 B
from __future__ import annotations
|
|
|
|
import urllib3.connection
|
|
|
|
from ...connectionpool import HTTPConnectionPool, HTTPSConnectionPool
|
|
from .connection import EmscriptenHTTPConnection, EmscriptenHTTPSConnection
|
|
|
|
|
|
def inject_into_urllib3() -> None:
|
|
# override connection classes to use emscripten specific classes
|
|
# n.b. mypy complains about the overriding of classes below
|
|
# if it isn't ignored
|
|
HTTPConnectionPool.ConnectionCls = EmscriptenHTTPConnection
|
|
HTTPSConnectionPool.ConnectionCls = EmscriptenHTTPSConnection
|
|
urllib3.connection.HTTPConnection = EmscriptenHTTPConnection # type: ignore[misc,assignment]
|
|
urllib3.connection.HTTPSConnection = EmscriptenHTTPSConnection # type: ignore[misc,assignment]
|