diff options
| author | Adrian Freihofer <adrian.freihofer@gmail.com> | 2024-02-15 21:44:52 +0100 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2024-03-01 08:00:58 -1000 |
| commit | d1299791a5f6609199a8da0d758d423602d40f2a (patch) | |
| tree | 59696a8d7d2cb6c9dbea3aaf763979096f4bf838 /bitbake/lib | |
| parent | d4ad54a401031346727ec6c1337f4b0211b5cc47 (diff) | |
| download | poky-d1299791a5f6609199a8da0d758d423602d40f2a.tar.gz | |
bitbake: bitbake/lib/bs4/tests/test_tree.py: python 3.12 regex
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.
(Bitbake rev: 7efed7bc09c56e41d3074a26388581a62f145625)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'bitbake/lib')
| -rw-r--r-- | bitbake/lib/bs4/tests/test_tree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bs4/tests/test_tree.py b/bitbake/lib/bs4/tests/test_tree.py index 8e5c66426e..cf0f1abe0c 100644 --- a/bitbake/lib/bs4/tests/test_tree.py +++ b/bitbake/lib/bs4/tests/test_tree.py | |||
| @@ -585,7 +585,7 @@ class SiblingTest(TreeTest): | |||
| 585 | </html>''' | 585 | </html>''' |
| 586 | # All that whitespace looks good but makes the tests more | 586 | # All that whitespace looks good but makes the tests more |
| 587 | # difficult. Get rid of it. | 587 | # difficult. Get rid of it. |
| 588 | markup = re.compile("\n\s*").sub("", markup) | 588 | markup = re.compile(r"\n\s*").sub("", markup) |
| 589 | self.tree = self.soup(markup) | 589 | self.tree = self.soup(markup) |
| 590 | 590 | ||
| 591 | 591 | ||
