(self,
name=None, type=None, kind=None, id=None,
label=None, nr=None)
| 3238 | # Private methods. |
| 3239 | |
| 3240 | def _find_list_control(self, |
| 3241 | name=None, type=None, kind=None, id=None, |
| 3242 | label=None, nr=None): |
| 3243 | if ((name is None) and (type is None) and (kind is None) and |
| 3244 | (id is None) and (label is None) and (nr is None)): |
| 3245 | raise ValueError( |
| 3246 | "at least one argument must be supplied to specify control") |
| 3247 | |
| 3248 | return self._find_control(name, type, kind, id, label, |
| 3249 | is_listcontrol, nr) |
| 3250 | |
| 3251 | def _find_control(self, name, type, kind, id, label, predicate, nr): |
| 3252 | if ((name is not None) and (name is not Missing) and |
no test coverage detected