Lines Matching defs:Connection
111 # Connection classes
269 Connection class based on a Windows named pipe.
347 class Connection(_ConnectionBase):
349 Connection class based on an arbitrary file descriptor (Unix only), or
458 Returns a `Connection` object.
523 c1 = Connection(s1.detach())
524 c2 = Connection(s2.detach())
527 c1 = Connection(fd1, writable=False)
528 c2 = Connection(fd2, readable=False)
610 return Connection(s.detach())
630 return Connection(s.detach())
952 return Connection(sock.detach(), readable, writable)
953 reduction.register(Connection, reduce_connection)
971 return Connection(fd, readable, writable)
972 reduction.register(Connection, reduce_connection)