mirror of https://github.com/python/cpython
Add 'sendall' to list of socket methods.
This commit is contained in:
parent
b7747e2a2d
commit
b2c763fed2
|
@ -125,7 +125,7 @@ def getfqdn(name=''):
|
|||
_socketmethods = (
|
||||
'bind', 'connect', 'connect_ex', 'fileno', 'listen',
|
||||
'getpeername', 'getsockname', 'getsockopt', 'setsockopt',
|
||||
'recv', 'recvfrom', 'send', 'sendto', 'setblocking', 'shutdown')
|
||||
'recv', 'recvfrom', 'send', 'sendall', 'sendto', 'setblocking', 'shutdown')
|
||||
|
||||
class _socketobject:
|
||||
|
||||
|
|
Loading…
Reference in New Issue