src/eric7/PipInterface/PipDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
108 self.close() 108 self.close()
109 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): 109 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel):
110 self.__cancel() 110 self.__cancel()
111 111
112 @pyqtSlot(int, QProcess.ExitStatus) 112 @pyqtSlot(int, QProcess.ExitStatus)
113 def __procFinished(self, exitCode, exitStatus): 113 def __procFinished(self, _exitCode, _exitStatus):
114 """ 114 """
115 Private slot connected to the finished signal. 115 Private slot connected to the finished signal.
116 116
117 @param exitCode exit code of the process 117 @param _exitCode exit code of the process (unused)
118 @type int 118 @type int
119 @param exitStatus exit status of the process 119 @param _exitStatus exit status of the process (unused)
120 @type QProcess.ExitStatus 120 @type QProcess.ExitStatus
121 """ 121 """
122 self.__finish() 122 self.__finish()
123 123
124 def startProcess(self, cmd, args, showArgs=True): 124 def startProcess(self, cmd, args, showArgs=True):

eric ide

mercurial