On 2021-10-11 4:28 a.m., Yu, Mingli wrote:
From: Mingli Yu <[email protected]>

Use regex strings (r’’) to silence below deprecation warning [1]:
  $ cat 
tmp/work/intel_x86_64-wrs-linux/linux-yocto/5.10.x+gitAUTOINC+917c420111_373c02c3ca-r0/temp/log.do_deploy
  [snip]
  /build/layers/oe-core/meta/lib/oe/packagedata.py:22: DeprecationWarning: 
invalid escape sequence \s
  r = re.compile("(^.+?):\s+(.*)")
  [snip]

[1] https://docs.python.org/3/library/re.html


"Also, please note that any invalid escape sequences in Python’s usage of the backslash in string literals now generate a DeprecationWarning and in the future this will become a SyntaxError."

so it would seem that our use is invalid and if so we should fix it before it becomes an error, right?

If so please create a YP bugzilla defect.

Thanks,

../Randy


Signed-off-by: Mingli Yu <[email protected]>
---
  meta/lib/oe/packagedata.py | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/packagedata.py b/meta/lib/oe/packagedata.py
index 02c81e5a52..212f048bc6 100644
--- a/meta/lib/oe/packagedata.py
+++ b/meta/lib/oe/packagedata.py
@@ -19,7 +19,7 @@ def read_pkgdatafile(fn):
          import re
          with open(fn, 'r') as f:
              lines = f.readlines()
-        r = re.compile("(^.+?):\s+(.*)")
+        r = re.compile(r"(^.+?):\s+(.*)")
          for l in lines:
              m = r.match(l)
              if m:







--
# Randy MacLeod
# Wind River Linux

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#156918): 
https://lists.openembedded.org/g/openembedded-core/message/156918
Mute This Topic: https://lists.openembedded.org/mt/86232043/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to