Pekka Klärck
Pekka Klärck
Creating converters in `__init__` obviously makes it slower to create the higher level converter which slows down importing libraries. Then again, if the keyword is used multiple times, there's no...
Due to there being hurry to get the next release out, @JFoederer and I agreed that I continue with this PR. I checked it out locally, but unfortunately there were...
Interesting! I don't have time to look at this now, but I add this to RF 5.1 scope to not forget about it. Would be a nice enhancement to get...
I've been busy with non-work stuff lately (mostly studying interpreters and compilers so it's been highly related) and haven't had time to look at this yet. I try to get...
This has been now implemented based on the excellent PR #4434 by @JFoederer. Thanks a lot for your hard work!
That line is there, but converters nowadays get the used type, not the origin, as an argument. Possible origin is only used for finding the right converter. If you have...
Key change is the added ```python used_type = type_ ``` before ```python if getattr(type_, '__origin__', None) and type_.__origin__ is not Union: type_ = type_.__origin__ ``` and that `used_type` is passed...
This was changed in RF 5.0 for reasons explained in #2982. The underlying problem with the xunit format is that there is no definitive standard for it. Different people and...
When you use embedded arguments, Robot always allows using variables as arguments. That's by design and useful, but it could be more strict with actual variable values. Most importantly, if...
Matching non-string values to regular expressions sounds a bit strange, but I guess it could make sense in this context. We'd only check the value if there's a custom regular...