summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bs4/dammit.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bs4/dammit.py')
-rw-r--r--bitbake/lib/bs4/dammit.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/bitbake/lib/bs4/dammit.py b/bitbake/lib/bs4/dammit.py
index 68d419feb5..805aa908a5 100644
--- a/bitbake/lib/bs4/dammit.py
+++ b/bitbake/lib/bs4/dammit.py
@@ -45,9 +45,9 @@ except ImportError:
45 pass 45 pass
46 46
47xml_encoding_re = re.compile( 47xml_encoding_re = re.compile(
48 '^<\?.*encoding=[\'"](.*?)[\'"].*\?>'.encode(), re.I) 48 r'^<\?.*encoding=[\'"](.*?)[\'"].*\?>'.encode(), re.I)
49html_meta_re = re.compile( 49html_meta_re = re.compile(
50 '<\s*meta[^>]+charset\s*=\s*["\']?([^>]*?)[ /;\'">]'.encode(), re.I) 50 r'<\s*meta[^>]+charset\s*=\s*["\']?([^>]*?)[ /;\'">]'.encode(), re.I)
51 51
52class EntitySubstitution(object): 52class EntitySubstitution(object):
53 53
@@ -80,11 +80,11 @@ class EntitySubstitution(object):
80 ">": "gt", 80 ">": "gt",
81 } 81 }
82 82
83 BARE_AMPERSAND_OR_BRACKET = re.compile("([<>]|" 83 BARE_AMPERSAND_OR_BRACKET = re.compile(r"([<>]|"
84 "&(?!#\d+;|#x[0-9a-fA-F]+;|\w+;)" 84 r"&(?!#\d+;|#x[0-9a-fA-F]+;|\w+;)"
85 ")") 85 r")")
86 86
87 AMPERSAND_OR_BRACKET = re.compile("([<>&])") 87 AMPERSAND_OR_BRACKET = re.compile(r"([<>&])")
88 88
89 @classmethod 89 @classmethod
90 def _substitute_html_entity(cls, matchobj): 90 def _substitute_html_entity(cls, matchobj):