Home
last modified time | relevance | path

Searched refs:_asdict (Results 1 – 1 of 1) sorted by relevance

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dnamedtuple_with_abc.py93 return list(self._asdict().items())
106 return list(self._asdict().items())
170 def _asdict(self): # (cannot override a namedtuple method, see below) member in MyMixIn
204 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 MyRecord6
212 print(rec6._asdict()) # (this returns "MyRecord6._asdict() called")