You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/home/nashif/Work/github/zephyr/scripts/process_gperf.py:104: FutureWarning: Possible nested set at position 12
line = re.sub(r'lengthtable[[]key[]]', r'4', line)
To Reproduce
Steps to reproduce the behavior:
Do any build with CONFIG_USERSPACE=y and the latest Python 3.7, only started to see this when I upgraded to Fedora 29.
Expected behavior
No Python warnings.
Impact
Probably harmless but someone should take a look and at least get rid of the warning.
Screenshots or console output
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Python 3.7 throws a FutureWarning when it thinks it
has found a nested set in a regular expression.
We weren't actually; just trying to match some brackets.
Escape them instead. No functional difference.
Fixes: zephyrproject-rtos#11961
Signed-off-by: Andrew Boie <[email protected]>
Python 3.7 throws a FutureWarning when it thinks it
has found a nested set in a regular expression.
We weren't actually; just trying to match some brackets.
Escape them instead. No functional difference.
Fixes: #11961
Signed-off-by: Andrew Boie <[email protected]>
Describe the bug
To Reproduce
Steps to reproduce the behavior:
Do any build with CONFIG_USERSPACE=y and the latest Python 3.7, only started to see this when I upgraded to Fedora 29.
Expected behavior
No Python warnings.
Impact
Probably harmless but someone should take a look and at least get rid of the warning.
Screenshots or console output
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: