def is_winvault_supported():
try:
__import__('win32cred')
has_pywin32 = True
except ImportError:
has_pywin32 = False
return (
sys.platform in ['win32'] and sys.getwindowsversion().major >= 6
and has_pywin32
)
评论列表
文章目录