Searched refs:_delegate_methods (Results 1 – 3 of 3) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | socket.py | 168 _delegate_methods = ("recv", "recvfrom", "recv_into", "recvfrom_into", variable 187 __slots__ = ["_sock", "__weakref__"] + list(_delegate_methods) 193 for method in _delegate_methods: 197 _delegate_methods=_delegate_methods, setattr=setattr): argument 201 for method in _delegate_methods:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | socket.py | 164 _delegate_methods = ("recv", "recvfrom", "recv_into", "recvfrom_into", variable 183 __slots__ = ["_sock", "__weakref__"] + list(_delegate_methods) 189 for method in _delegate_methods: 193 _delegate_methods=_delegate_methods, setattr=setattr): argument 197 for method in _delegate_methods:
|
D | ssl.py | 89 from socket import socket, _fileobject, _delegate_methods, error as socket_error 109 for attr in _delegate_methods:
|