D.items() returns a set-like object providing a view on the items
(self)
| 290 | return Mapping.get(self, key, default) |
| 291 | |
| 292 | def items(self): |
| 293 | """ |
| 294 | D.items() returns a set-like object providing a view on the items |
| 295 | """ |
| 296 | return Mapping.items(self) |
| 297 | |
| 298 | def keys(self): |
| 299 | """ |
no outgoing calls