ostr00000
ostr00000
### Steps to reproduce 1. Consider following code in `include_error.py`: ``` """Undefined variable reproduce test""" if (val := True) or (val_2 := True): print(val) print(val_2) else: print(val) print(val_2) ``` 2....
Closes #94
### Problem description I think the code is correct and should be parsed by `cxxheaderparser`. But running this code fail with error: `:8: parse error evaluating 'operator': unexpected 'operator', expected...
1. In this markdown: https://github.com/FreeCAD/DevelopersHandbook/blob/245f3d339187d67716fb6d77c2d4002775ae0549/technical/translation.md?plain=1#L109-L115 I only see Qt translation by function, but it is possible to translate using `tr` method from `QObject`. In my opinion, this is a much...