(self, type, name, attrs, index=None)
| 1415 | """ |
| 1416 | |
| 1417 | def __init__(self, type, name, attrs, index=None): |
| 1418 | ScalarControl.__init__(self, type, name, attrs, index) |
| 1419 | self._value = None |
| 1420 | self._upload_data = [] |
| 1421 | |
| 1422 | def is_of_kind(self, kind): return kind == "file" |
| 1423 |