_epoll = attr.ib(factory=select.epoll) AttributeError: module 'select' has no attribute 'epoll'
时间: 2023-12-07 15:40:09 浏览: 220
select poll epoll 代码实例
根据提供的引用内容,可以得知在使用`select.epoll`时出现了`AttributeError: module 'select' has no attribute 'epoll'`的错误。这是因为`select`模块并不支持`epoll`,而是需要使用`select.epoll`模块来支持`epoll`。因此,需要将代码中的`select.epoll`替换为`select.epoll()`。
下面是修改后的代码示例:
```python
import select
_epoll = attr.ib(factory=select.epoll)
```
修改为:
```python
import select
_epoll = attr.ib(factory=select.epoll())
```
阅读全文