问题描述
虽然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,[])