コード例 #1
0
 def open(self, timeout=None, authenticate=1):
     """Overloaded to provide the global timeout."""
     if timeout is None:
         timeout = self.timeout
     ClientServerSocket.open(self,
                             timeout=timeout,
                             authenticate=authenticate)
コード例 #2
0
ファイル: GenericClient.py プロジェクト: makeittotop/py_queue
 def open(self, timeout=None, authenticate=1, **kwargs):
     """Clears the authentication information before opening the
     connection."""
     self.authMsgSent   = 0
     self.authenticated = 0
     if timeout is None:
         timeout = self.timeout
     ClientServerSocket.open(self, timeout=timeout,
                             authenticate=authenticate,
                             **kwargs)
コード例 #3
0
ファイル: GenericClient.py プロジェクト: makeittotop/py_queue
 def open(self, timeout=None, authenticate=1, **kwargs):
     """Clears the authentication information before opening the
     connection."""
     self.authMsgSent = 0
     self.authenticated = 0
     if timeout is None:
         timeout = self.timeout
     ClientServerSocket.open(self,
                             timeout=timeout,
                             authenticate=authenticate,
                             **kwargs)
コード例 #4
0
ファイル: SimpleClient.py プロジェクト: makeittotop/py_queue
 def open(self, timeout=None, authenticate=1):
     """Overloaded to provide the global timeout."""
     if timeout is None:
         timeout = self.timeout
     ClientServerSocket.open(self, timeout=timeout,
                             authenticate=authenticate)