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 b306d6c commit 3dbbeabCopy full SHA for 3dbbeab
pymongo/__init__.py
@@ -45,7 +45,6 @@
45
"WriteConcern",
46
"has_c",
47
"timeout",
48
- "uri_parser",
49
]
50
51
ASCENDING = 1
@@ -106,6 +105,9 @@
106
105
from pymongo.synchronous.mongo_client import MongoClient
107
from pymongo.write_concern import WriteConcern
108
+# Public module compatibility imports
109
+import pymongo.uri_parser # noqa: F401 # isort: skip
110
+
111
version = __version__
112
"""Current version of PyMongo."""
113
test/test_default_exports.py
@@ -34,7 +34,7 @@
34
"ConfigurationError",
35
36
37
-PYMONGO_IGNORE = ["uri_parser"]
+PYMONGO_IGNORE = []
38
GLOBAL_INGORE = ["TYPE_CHECKING", "annotations"]
39
40
0 commit comments