如何解决Python错误:io.UnsupportedOperation:fileno
虽然fileno()
正常IO方法的工作对象(sys.stdout
,sys.stderr
,sys.stdin
和socket.socket
),空闲的Python
IDE改变它打破这个您的IO对象。
所以…如果出现此错误,请直接从Python运行命令。
解决方法
我正在通过以下链接使用服务器和客户端程序:http
:
//www.bogotobogo.com/python/python_network_programming_tcp_server_client_chat_server_chat_client_select.php
当我运行客户端时,遇到以下错误:
Traceback (most recent call last):
File "client.py",line 26,in client
read_sockets,write_sockets,error_sockets = select.select(socket_list,[],[])
io.UnsupportedOperation: fileno
我正在使用Python 3
,但是我已使用从更改了所有行Python 2 to 3
。
这是代码:
while 1:
socket_list = [sys.stdin,s]
# Get the list sockets which are readable
read_sockets,error_sockets = select.select(socket_list,[])
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。