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 297bf9c commit 39ade36Copy full SHA for 39ade36
pymongo/__init__.py
@@ -15,7 +15,6 @@
15
"""Python driver for MongoDB."""
16
from __future__ import annotations
17
18
-from concurrent.futures import ThreadPoolExecutor
19
from typing import ContextManager, Optional
20
21
__all__ = [
@@ -167,6 +166,3 @@ def timeout(seconds: Optional[float]) -> ContextManager[None]:
167
166
if seconds is not None:
168
seconds = float(seconds)
169
return _csot._TimeoutContext(seconds)
170
-
171
172
-_PYMONGO_EXECUTOR = ThreadPoolExecutor(thread_name_prefix="PYMONGO_EXECUTOR-")
0 commit comments