PCQRSCANER/venv/Lib/site-packages/extract_msg/compat/os_.py

10 lines
171 B
Python
Raw Permalink Normal View History

2019-12-22 21:51:47 +01:00
"""
Compatibility module to ensure that certain functions exist across python versions
"""
from os import *
import sys
if sys.version_info[0] >= 3:
getcwdu = getcwd