We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2be3f3f commit 324786dCopy full SHA for 324786d
1 file changed
packages/google-api-core/google/api_core/gapic_v1/__init__.py
@@ -14,6 +14,12 @@
14
15
from typing import Set
16
17
+# PEP 0810: Explicit Lazy Imports
18
+# Python 3.15+ natively intercepts and defers these imports.
19
+# Developers can disable this behavior and force eager imports.
20
+# For more information, see:
21
+# https://docs.python.org/3.15/library/sys.html#sys.set_lazy_imports_filter
22
+# Older Python versions safely ignore this variable.
23
__lazy_modules__: Set[str] = {
24
"google.api_core.gapic_v1.client_info",
25
"google.api_core.gapic_v1.config",
0 commit comments