博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AttributeError: 'module' object has no attribute 'Thread'
阅读量:6011 次
发布时间:2019-06-20

本文共 755 字,大约阅读时间需要 2 分钟。

$ python thread.py

starting at: 2015-08-05 00:24:24
Traceback (most recent call last):
  File "thread.py", line 28, in <module>
    main()
  File "thread.py", line 16, in main
    th = threading.Thread(target= test,args= (i,2))
AttributeError: 'module' object has no attribute 'Thread'
Exception AttributeError: '_shutdown' in <module 'threading' from '/home/tim/Desktop/sourceeeeeeeeeeeeeeee//threading.pyc'> ignored

Check that you have not named your script threading.py

8 accepted

I bet you have a local file named threading.py, and it's masking the system threading module.

You can verify this by printing threading.__file__:

import threadingprint threading.__file__

to get the file path of the module that is being imported.

Rename it, or delete it, to fix this.

转载地址:http://ekrmx.baihongyu.com/

你可能感兴趣的文章
使用eclipse生成html格式注释文档 [ javadoc ]
查看>>
ProtoBuffer 简单例子
查看>>
Winform开发框架中工作流模块的表设计分析
查看>>
sklearn
查看>>
iOS多线程开发系列之(一)NSThread
查看>>
微信小程序初体验(上)- 腾讯ISUX社交用户体验设计成员出品
查看>>
实战使用Axure设计App,使用WebStorm开发(6) – 迈向后端
查看>>
SAP WM Physical Inventory Method ST & PZ
查看>>
jenkins自动发布java代码
查看>>
一道趣味数学算法问题
查看>>
版权协议
查看>>
我的女儿二三事
查看>>
SAP SD Sales Order 中的shipping point 不能为空
查看>>
通用Iframe跨域通信库实现
查看>>
一次快速的数据迁移感悟
查看>>
8.7. dmidecode - DMI table decoder
查看>>
MySQL修改提示符
查看>>
PLSQL的变量
查看>>
HDOJ 2021 发工资咯:)(利用了一种取余的思想)
查看>>
在openSUSE 13.1中配置FTP服务器
查看>>