예제 #1
0
파일: v5.py 프로젝트: w4lker/Antix
 def __getattribute__(self, attr):
     """Send undefined methods straight through to proxied reply
     """
     # send these attributes through to proxy reply
     if attr in ('operation', 'request', 'url', 'abort',
                 'close'):  #, 'isSequential'):
         value = self.reply.__getattribute__(attr)
     else:
         value = QNetworkReply.__getattribute__(self, attr)
     #print attr, value
     return value