mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
add os import for _dummy_os
This commit is contained in:
5
Lib/filecmp.py
vendored
5
Lib/filecmp.py
vendored
@@ -10,7 +10,10 @@ Functions:
|
||||
|
||||
"""
|
||||
|
||||
import os
|
||||
try:
|
||||
import os
|
||||
except ImportError:
|
||||
import _dummy_os as os
|
||||
import stat
|
||||
from itertools import filterfalse
|
||||
from types import GenericAlias
|
||||
|
||||
Reference in New Issue
Block a user