We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
path
1 parent f1039fd commit ad9309bCopy full SHA for ad9309b
python-stdlib/os/os/__init__.py
@@ -1,2 +1,8 @@
1
# Replace built-in os module.
2
from uos import *
3
+
4
+# Provide optional dependencies (which may be installed separately).
5
+try:
6
+ from . import path
7
+except ImportError:
8
+ pass
0 commit comments