Home
last modified time | relevance | path

Searched refs:matchobj (Results 1 – 2 of 2) sorted by relevance

/openbmc/openbmc/poky/meta-selftest/lib/oeqa/runtime/cases/
H A Ddnf_runtime.py49 matchobj = re.match(r".*Repo-pkgs\s*:\s*(?P<n_pkgs>[0-9]+)", output_repoinfo, re.DOTALL)
50 …self.assertTrue(matchobj is not None, msg = "Could not find the amount of packages in dnf repoinfo…
51 …self.assertTrue(int(matchobj.group('n_pkgs')) > 0, msg = "Amount of remote packages is not more th…
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Ddammit.py82 def _substitute_html_entity(cls, matchobj): argument
83 entity = cls.CHARACTER_TO_HTML_ENTITY.get(matchobj.group(0))
87 def _substitute_xml_entity(cls, matchobj): argument
90 entity = cls.CHARACTER_TO_XML_ENTITY[matchobj.group(0)]