remove import dummp_os

This commit is contained in:
Jeong YunWon
2024-04-23 13:42:03 +09:00
committed by Jeong, YunWon
parent 075c69a3cd
commit 99a4bf5eb5

5
Lib/genericpath.py vendored
View File

@@ -3,10 +3,7 @@ Path operations common to more than one OS
Do not use directly. The OS specific modules import the appropriate
functions from this module themselves.
"""
try:
import os
except ImportError:
import _dummy_os as os
import os
import stat
__all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',