def funcion_Open(self):
fileName = QtGui.QFileDialog.getOpenFileName()
if len(fileName)>0:
self.timer.stop()
self.variableStats={}
self.reqStats={}
self.limpiatablas()
self.comboBox.clear()
self.comboBox.addItem("All")
self.comboBox_2.clear()
self.comboBox_2.addItem("All")
self.comboBox_3.clear()
self.comboBox_3.addItem("All")
Proxynet.clearRequests()
f = file(fileName)
Proxynet.addRequests(pickl.load(f))
f.close()
self.numRequests=0
self.timerFunc()
self.timer.start(500)
评论列表
文章目录