From 8667605d016e82add95638fcb15c2bbc1b489ecc Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 14 Dec 2018 11:02:33 +0000 Subject: data_smart: Add missing regexp markup Fix some further python3 warnings about unescaped regexs. Signed-off-by: Richard Purdie --- lib/bb/data_smart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bb/data_smart.py b/lib/bb/data_smart.py index 67af38050..297a2f45b 100644 --- a/lib/bb/data_smart.py +++ b/lib/bb/data_smart.py @@ -39,10 +39,10 @@ from bb.COW import COWDictBase logger = logging.getLogger("BitBake.Data") __setvar_keyword__ = ["_append", "_prepend", "_remove"] -__setvar_regexp__ = re.compile('(?P.*?)(?P_append|_prepend|_remove)(_(?P[^A-Z]*))?$') +__setvar_regexp__ = re.compile(r'(?P.*?)(?P_append|_prepend|_remove)(_(?P[^A-Z]*))?$') __expand_var_regexp__ = re.compile(r"\${[^{}@\n\t :]+}") __expand_python_regexp__ = re.compile(r"\${@.+?}") -__whitespace_split__ = re.compile('(\s)') +__whitespace_split__ = re.compile(r'(\s)') def infer_caller_details(loginfo, parent = False, varval = True): """Save the caller the trouble of specifying everything.""" -- cgit 1.2.3-korg