PCQRSCANER/venv/Lib/site-packages/extract_msg/compat/os_.py
2019-12-22 21:51:47 +01:00

10 lines
171 B
Python

"""
Compatibility module to ensure that certain functions exist across python versions
"""
from os import *
import sys
if sys.version_info[0] >= 3:
getcwdu = getcwd