MCPcopy Create free account
hub / github.com/python-hyper/uritemplate / Link

Class Link

uritemplate/orderedset.py:6–12  ·  view source on GitHub ↗

Representation of one item in a doubly-linked list.

Source from the content-addressed store, hash-verified

4
5
6class Link:
7 """Representation of one item in a doubly-linked list."""
8
9 __slots__ = ("prev", "next", "key", "__weakref__")
10 prev: "Link"
11 next: "Link"
12 key: str
13
14
15class OrderedSet(t.MutableSet[str]):

Callers 2

__init__Method · 0.85
addMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…