def test(self): """ unpacking in instance attributes """ self.a, self.b = temp() self.a, self.b = temp2() self.a, self.b = unpack()
def do_stuff9(): """ This is not correct """ first, second = unpack() return first + second