team-10/venv/Lib/site-packages/win32comext/mapi/__init__.py
2025-08-02 02:00:33 +02:00

21 lines
469 B
Python

if isinstance(__path__, str):
# For freeze to work!
import sys
try:
import mapi
sys.modules["win32com.mapi.mapi"] = mapi
except ImportError:
pass
try:
import exchange
sys.modules["win32com.mapi.exchange"] = exchange
except ImportError:
pass
else:
import win32com
# See if we have a special directory for the binaries (for developers)
win32com.__PackageSupportBuildPath__(__path__)