Add 'sendall' to list of socket methods.

This commit is contained in:
Guido van Rossum 2001-10-29 07:13:53 +00:00
parent b7747e2a2d
commit b2c763fed2
1 changed files with 1 additions and 1 deletions

View File

@ -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: