MCPcopy Index your code
hub / github.com/Python-Markdown/markdown / __iter__

Method __iter__

markdown/util.py:325–327  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

323 return item in self._data.values()
324
325 def __iter__(self) -> Iterator[_T]:
326 self._sort()
327 return iter([self._data[k] for k, p in self._priority])
328
329 @overload
330 def __getitem__(self, key: str | int) -> _T: # pragma: no cover

Callers

nothing calls this directly

Calls 1

_sortMethod · 0.95

Tested by

no test coverage detected