mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-18 20:11:20 +00:00
3112eb0a9b
- added caseless_string type. This behaves exactly like a string, except this ignores case in comparisons. It does, however, preserve case. E.g. >>> s = caseless_string('Test') >>> s == 'test' True >>> print s Test - added list_of type generating function. This allows to dynamically generate type-safe list types based on an existing type. E.g. >>> list_of_bool = list_of(bool) >>> list_of_bool(['foo', 0, 1, '', True]) [True, False, True, False, True] - Update core_names Device Parameter to be of type caseless_string