File tree Expand file tree Collapse file tree
packages/google-auth/google/auth/transport Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424for the return value of :class:`Request`.
2525"""
2626
27+ import abc
28+ import http .client as http_client
29+ from typing import Set
30+
2731# PEP 0810: Explicit Lazy Imports
2832# Python 3.15+ natively intercepts and defers these imports.
2933# Developers can disable this behavior and force eager imports.
3034# For more information, see:
3135# https://docs.python.org/3.15/library/sys.html#sys.set_lazy_imports_filter
3236# Older Python versions safely ignore this variable.
33- from typing import Set
34-
3537__lazy_modules__ : Set [str ] = {
3638 "_aiohttp_requests" ,
3739 "_custom_tls_signer" ,
4446 "urllib3" ,
4547}
4648
47- import abc
48- import http .client as http_client
49-
5049DEFAULT_RETRYABLE_STATUS_CODES = (
5150 http_client .INTERNAL_SERVER_ERROR ,
5251 http_client .SERVICE_UNAVAILABLE ,
You can’t perform that action at this time.
0 commit comments