MCPcopy Index your code
hub / github.com/python/cpython / expanded

Method expanded

Tools/unicode/makeunicodedata.py:962–966  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

960 return self.records()
961
962 def expanded(self) -> Iterator[Tuple[int, List[str]]]:
963 for record in self.records():
964 char_range, rest = record[0], record[1:]
965 for char in expand_range(char_range):
966 yield char, rest
967
968
969@dataclasses.dataclass

Callers 1

__init__Method · 0.80

Calls 2

recordsMethod · 0.95
expand_rangeFunction · 0.85

Tested by

no test coverage detected