robottypes
has_args(type)
¶
Helper to check has type valid __args__
.
__args__
contains TypeVars when accessed directly from typing.List
and
other such types with Python 3.8. Python 3.9+ don't have __args__
at all.
Parameterize usages like List[int].__args__
always work the same way.
This helper can be removed in favor of using hasattr(type, '__args__')
when we support only Python 3.9 and newer.
Source code in src/robot/utils/robottypes.py
is_falsy(item)
¶
is_truthy(item)
¶
Returns True
or False
depending on is the item considered true or not.
Validation rules:
- If the value is a string, it is considered false if it is
'FALSE'
,'NO'
,'OFF'
,'0'
,'NONE'
or''
, case-insensitively. - Other strings are considered true.
- Other values are handled by using the standard
bool()
function.
Designed to be used also by external test libraries that want to handle
Boolean values similarly as Robot Framework itself. See also
:func:is_falsy
.
Source code in src/robot/utils/robottypes.py
type_name(item, capitalize=False)
¶
Return "non-technical" type name for objects and types.
For example, 'integer' instead of 'int' and 'file' instead of 'TextIOWrapper'.
Source code in src/robot/utils/robottypes.py
type_repr(typ, nested=True)
¶
Return string representation for types.
Aims to look as much as the source code as possible. For example, 'List[Any]' instead of 'typing.List[typing.Any]'.