diff options
Diffstat (limited to 'netlib')
-rw-r--r-- | netlib/tcp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/netlib/tcp.py b/netlib/tcp.py index 47200bed..2c55de85 100644 --- a/netlib/tcp.py +++ b/netlib/tcp.py @@ -731,6 +731,7 @@ class TCPClient(_Connection): def connect(self): try: + # Allow the socket to be manipulated by using the server_conn stub. if not self.connection: connection = socket.socket(self.address.family, socket.SOCK_STREAM) else: |