[issue30481] lib/socket.py, line 330, Treated 'file' as a socket object, instead of int

2017-05-26 Thread Mohamad amin Khakzadan

Mohamad amin Khakzadan added the comment:

sorry, my code have bug.

--
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30481] lib/socket.py, line 330, Treated 'file' as a socket object, instead of int

2017-05-26 Thread Mohamad amin Khakzadan

New submission from Mohamad amin Khakzadan:

When I network programming, I got this problem:

  File "ft.py", line 43, in SendFile
sent=conn.sendfile(fd.fileno(), offset)
  File "D:\Program Files\Python\Python35-32\lib\socket.py", line 391, in 
sendfile
return self._sendfile_use_send(file, offset, count)
  File "D:\Program Files\Python\Python35-32\lib\socket.py", line 330, in 
_sendfile_use_send
file_read = file.read
AttributeError: 'int' object has no attribute 'read'


file_read = file.read
 ^
'file' is fd.fileno() not a socket object


socket.sendfile() documentation:
https://docs.python.org/3/library/socket.html#socket.socket.sendfile

--
components: Windows
messages: 294539
nosy: Mohamad amin Khakzadan, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: lib/socket.py, line 330, Treated 'file' as a socket object, instead of 
int
type: compile error
versions: Python 3.5

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com