File "d:\anaconda3\lib\threading.py", line 784, in __init__ assert group is None, "group argument must be None for now"
时间: 2024-05-09 09:14:23 浏览: 143
这是一个 AssertionError 异常,它表示在 threading 模块的 __init__ 方法中,传递了一个非 None 的 group 参数。但是,在当前版本中,group 参数必须为 None,否则会抛出此异常。
您可以检查您的代码,并确保在创建线程时,group 参数被设置为 None。例如:
```python
import threading
def my_func():
print("Hello from thread")
my_thread = threading.Thread(target=my_func, group=None)
my_thread.start()
```
这样就可以避免此异常的出现。
阅读全文