Майер Вера Александровна, 428 группа DataClass 13082
Сычев Пётр Сергеевич, 418 DataClass 13099
n1def sloter(fields, default):n1def sloter(iters, val):
22
n3    class slo:n3    class Class:
4        __slots__ = fields4        __slots__ = iters
55
6        def __init__(self):6        def __init__(self):
n7            for name in self.__slots__:n7            for slot in Class.__slots__:
8                setattr(self, name, default)8                setattr(self, slot, val)
99
10        def __iter__(self):10        def __iter__(self):
n11            for name in self.__slots__:n11            for slot in Class.__slots__:
12                yield getattr(self, name)12                yield getattr(self, slot)
1313
t14        def __delattr__(self, name):t14        def __delattr__(self, slot):
15            setattr(self, name, default)15            setattr(self, slot, val)
16    return slo16    return Class
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op