Method: rich.style.Style.__hash__
Calls: 33291, Exceptions: 0, Paths: 2Back
Path 1: 32582 calls (0.98)
4646225110626669232 (17640) -7467137677185108907 (2049) 1774583924505434508 (1495) -3124779773567524819 (1434) 2993241607677838530 (1393) 699066808368...
1def __hash__(self) -> int:
2 if self._hash is not None:
3 return self._hash
4 self._hash = hash(
5 (
6 self._color,
7 self._bgcolor,
8 self._attributes,
9 self._set_attributes,
10 self._link,
11 self._meta,
12 )
13 )
14 return self._hash
Path 2: 709 calls (0.02)
4646225110626669232 (94) 2993241607677838530 (69) -7467137677185108907 (49) 1774583924505434508 (42) 6990668083684910416 (23) 6806269683613646241 (19)...
1def __hash__(self) -> int:
2 if self._hash is not None:
3 return self._hash
4 self._hash = hash(
5 (
6 self._color,
7 self._bgcolor,
8 self._attributes,
9 self._set_attributes,
10 self._link,
11 self._meta,
12 )
13 )
14 return self._hash