(data)
| 151 | warnings.warn(message, DeprecationWarning, stacklevel=3) |
| 152 | |
| 153 | def makelist(data): # This is just to handy |
| 154 | if isinstance(data, (tuple, list, set, dict)): return list(data) |
| 155 | elif data: return [data] |
| 156 | else: return [] |
| 157 | |
| 158 | |
| 159 | class DictProperty(object): |