在 poplib 模块中找不到 POP3_SSL
尝试使用 poplib.POP3_SSL 类时,什么会导致这个奇怪的错误。
Traceback (most recent call last):
File "test.py", line 131, in <module>
M = poplib.POP3_SSL('XXXXXXXX', 995)
AttributeError: 'module' object has no attribute 'POP3_SSL'
我的环境是Python 2.6,REHL5
我以前从未遇到过这个问题,而且它恰好是我的一台服务器轮流出现的问题。
What would cause this strange error when trying to use the poplib.POP3_SSL class.
Traceback (most recent call last):
File "test.py", line 131, in <module>
M = poplib.POP3_SSL('XXXXXXXX', 995)
AttributeError: 'module' object has no attribute 'POP3_SSL'
My environment is Python 2.6, REHL5
I've never run into this problem before and it just so happens to be a problem with only one of my servers in rotation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 python 可能在没有 ssl 支持的情况下编译。
Your python might be compiled without ssl support.