mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
All the regexes throw a warning like this:
WARNING: scripts/lib/recipetool/create_buildsys.py:140:
SyntaxWarning: invalid escape sequence '\s'
proj_re = re.compile('project\s*\(([^)]*)\)', re.IGNORECASE)
Python 3 interprets string literals as Unicode strings, and therefore
\s is treated as an escaped Unicode character which is not correct.
Declaring the RegEx pattern as a raw string instead of unicode is
required for Python 3.
(From OE-Core rev: 24b0ba00d4f0b4d9834f7693ecb6032dfc534a80)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
||
|---|---|---|
| .. | ||
| bb-perf | ||
| bbvars.py | ||
| build-perf-test-wrapper.sh | ||
| convert-overrides.py | ||
| convert-spdx-licenses.py | ||
| convert-srcuri.py | ||
| convert-variable-renames.py | ||
| ddimage | ||
| devtool-stress.py | ||
| dialog-power-control | ||
| documentation-audit.sh | ||
| graph-tool | ||
| image-manifest | ||
| list-packageconfig-flags.py | ||
| oe-build-perf-report-email.py | ||
| patchreview.py | ||
| patchtest.sh | ||
| serdevtry | ||
| test_build_time_worker.sh | ||
| test_build_time.sh | ||
| uncovered | ||
| verify-homepage.py | ||