Change-Id: I61e27ac2496b731afa2b70996aee816c030b3fbf
+v1.1.1 - 2015-xx-xx
+===================
+
+- Further fix for Client constructor for the case where "localhost" is
+ unresolvable.
+
+
v1.1 - 2015-01-30
=================
sock1 = socket.socket(socket.AF_INET, socket.SOCK_STREAM, socket.IPPROTO_IP)
sock1.setblocking(0)
try:
- sock1.connect(("localhost", port))
+ sock1.connect(("127.0.0.1", port))
except socket.error as err:
if err.errno != errno.EINPROGRESS and err.errno != errno.EWOULDBLOCK and err.errno != EAGAIN:
raise