MCPcopy Index your code
hub / github.com/bpython/bpython / finditer

Method finditer

bpython/lazyre.py:43–44  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

41 return re.compile(self.regex, self.flags)
42
43 def finditer(self, *args, **kwargs) -> Iterator[Match[str]]:
44 return self.compiled.finditer(*args, **kwargs)
45
46 def search(self, *args, **kwargs) -> Match[str] | None:
47 return self.compiled.search(*args, **kwargs)

Callers 15

current_wordFunction · 0.80
current_dict_keyFunction · 0.80
current_dictFunction · 0.80
current_stringFunction · 0.80
current_objectFunction · 0.80
current_object_attributeFunction · 0.80
current_from_import_fromFunction · 0.80
current_importFunction · 0.80
current_single_wordFunction · 0.80

Calls

no outgoing calls

Tested by 1

decodeFunction · 0.64