Home
last modified time | relevance | path

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

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dnamedtuple_with_abc.py189 rec5 = MyRecord5(1, 2, 3, 2, 1) variable
190 print(rec5)
191 print(rec5.method())
192 print(rec5._my_custom_method()) # MyMixIn's
193 print(rec5.count(2)) # MyMixIn's
194 print(rec5._replace(k=222))
195 print(rec5._replace(k=222).method())
196 print(rec5._replace(k=222)._my_custom_method()) # MyMixIn's
197 print(rec5._replace(k=222).count(2)) # MyMixIn's
205 print(rec5._asdict()) # (returns a dict, not "MyMixIn._asdict() called")