我在 32 位 XP 机器和密钥环 3.1 库上使用 python 2.7。也尝试使用 3.3 密钥环。我 keyring.set_password("name", "value", "hundred")
收到错误 (87, 'CredWrite', 'The parameter is wrong.')。在 exe 制作过程中,eclipse 和通过 py2exe 都会发生错误。我的 setup.py 是
from distutils.core import setup
import py2exe
import time
setup(
windows=['python.py'],
options=dict(py2exe=dict(
packages='keyring.backends',
)),
)
time.sleep(2)