eric6/VirtualEnv/VirtualenvInterpreterSelectionDialog.py

changeset 7635
0cdead130a81
parent 7360
9190402e4505
child 7671
5c6b164618c6
equal deleted inserted replaced
7634:8c3d033e5044 7635:0cdead130a81
71 71
72 def getData(self): 72 def getData(self):
73 """ 73 """
74 Public method to get the entered data. 74 Public method to get the entered data.
75 75
76 @return tuple containing the path of the selected Python interpreter 76 @return path of the selected Python interpreter
77 and the Python variant 77 @rtype str
78 @rtype tuple of (str, int)
79 """ 78 """
80 return ( 79 return self.pythonExecPicker.text(),
81 self.pythonExecPicker.text(),
82 3 - self.variantComboBox.currentIndex(),
83 )

eric ide

mercurial