Searched refs:rec5 (Results 1 – 1 of 1) sorted by relevance
189 rec5 = MyRecord5(1, 2, 3, 2, 1) variable190 print(rec5)191 print(rec5.method())192 print(rec5._my_custom_method()) # MyMixIn's193 print(rec5.count(2)) # MyMixIn's194 print(rec5._replace(k=222))195 print(rec5._replace(k=222).method())196 print(rec5._replace(k=222)._my_custom_method()) # MyMixIn's197 print(rec5._replace(k=222).count(2)) # MyMixIn's205 print(rec5._asdict()) # (returns a dict, not "MyMixIn._asdict() called")