MCPcopy Create free account
hub / github.com/Python-Markdown/markdown / __init__

Method __init__

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

Source from the content-addressed store, hash-verified

311 """
312
313 def __init__(self):
314 self._data: dict[str, _T] = {}
315 self._priority: list[_PriorityItem] = []
316 self._is_sorted = False
317
318 def __contains__(self, item: str | _T) -> bool:
319 if isinstance(item, str):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected