73 and os.path.isfile(interpreterPath) |
73 and os.path.isfile(interpreterPath) |
74 and os.access(interpreterPath, os.X_OK) |
74 and os.access(interpreterPath, os.X_OK) |
75 ) |
75 ) |
76 |
76 |
77 @pyqtSlot(str) |
77 @pyqtSlot(str) |
78 def on_pythonExecPicker_textChanged(self, txt): |
78 def on_pythonExecPicker_textChanged(self, _txt): |
79 """ |
79 """ |
80 Private slot to handle changes of the entered Python interpreter path. |
80 Private slot to handle changes of the entered Python interpreter path. |
81 |
81 |
82 @param txt entered Python interpreter path |
82 @param _txt entered Python interpreter path (unused) |
83 @type str |
83 @type str |
84 """ |
84 """ |
85 self.__updateOK() |
85 self.__updateOK() |
86 |
86 |
87 def getData(self): |
87 def getData(self): |