Searched refs:_asdict (Results 1 – 1 of 1) sorted by relevance
93 return list(self._asdict().items())106 return list(self._asdict().items())170 def _asdict(self): # (cannot override a namedtuple method, see below) member in MyMixIn204 print(rec4._asdict()) # (returns a dict, not "MyMixIn._asdict() called")205 print(rec5._asdict()) # (returns a dict, not "MyMixIn._asdict() called")209 def _asdict(self): member in MyRecord6212 print(rec6._asdict()) # (this returns "MyRecord6._asdict() called")