Пример #1
0
 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
Пример #3
0
def do_stuff9():
    """ This is not correct """
    first, second = unpack()
    return first + second
 def test(self):
     """ unpacking in instance attributes """
     self.a, self.b = temp()
     self.a, self.b = temp2()
     self.a, self.b = unpack()