Return list of (key, value, index) tuples. Like pairs, but allows preserving correct ordering even where several controls are involved.
(self)
| 1270 | return [(k, v) for (i, k, v) in self._totally_ordered_pairs()] |
| 1271 | |
| 1272 | def _totally_ordered_pairs(self): |
| 1273 | """Return list of (key, value, index) tuples. |
| 1274 | |
| 1275 | Like pairs, but allows preserving correct ordering even where several |
| 1276 | controls are involved. |
| 1277 | |
| 1278 | """ |
| 1279 | raise NotImplementedError() |
| 1280 | |
| 1281 | def _write_mime_data(self, mw, name, value): |
| 1282 | """Write data for a subitem of this control to a MimeWriter.""" |
no outgoing calls
no test coverage detected