
14 Dec
2009
14 Dec
'09
9:16 a.m.
l, v = self.parse_file(self.mpllineEdit.text())
Later on the book uses the above syntax.
I still need to do a little experimenting to fully appreciate this.
self.parse_file() returns a list (or a similar data construct) with two values
def return2(): ... return (1,2) ... a,b = return2() print a 1 print b 2