Result for 386269A8D82B100839EA27048009A570D7C60D52

Query result

Key Value
FileName./usr/lib/python3/dist-packages/frozenlist/_frozenlist.cpython-311-arm-linux-gnueabihf.so
FileSize40496
MD5605B16264042A86B0A15F352DF26B2EB
SHA-1386269A8D82B100839EA27048009A570D7C60D52
SHA-256D0D3337E61AE7835F424030F45773406AECF601B6B96488FF4EF27334FC38C13
SSDEEP768:/Tqp2MGvDjSuBrNClhbDB46Tvng/YdD3UuwRm+G9:/TMGbuuBrNihbFdTIgdD3Smb
TLSHT127032AF5FA44C837C9C2D8357803EE09411BC29869B93ADB47D6C5E13B6B2E09E36C59
hashlookup:parent-total1
hashlookup:trust55

Network graph view

Parents (Total: 1)

The searched file hash is included in 1 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
FileSize26812
MD5C7035DB9D4B2E22A9E6B00695B4F8CE2
PackageDescriptionlist-like structure which implements collections.abc.MutableSequence `frozenlist.FrozenList` is a list-like structure which implements `collections.abc.MutableSequence`. The list is mutable until `FrozenList.freeze` is called, after which list modifications raise `RuntimeError`: . >>> from frozenlist import FrozenList >>> fl = FrozenList([17, 42]) >>> fl.append('spam') >>> fl.append('Vikings') >>> fl <FrozenList(frozen=False, [17, 42, 'spam', 'Vikings'])> >>> fl.freeze() >>> fl <FrozenList(frozen=True, [17, 42, 'spam', 'Vikings'])> >>> fl.frozen True >>> fl.append("Monty") Traceback (most recent call last): File "<stdin>", line 1, in <module> File "frozenlist/_frozenlist.pyx", line 97, in frozenlist._frozenlist.FrozenList.append self._check_frozen() File "frozenlist/_frozenlist.pyx", line 19, in frozenlist._frozenlist.FrozenList._check_frozen raise RuntimeError("Cannot modify frozen list.") RuntimeError: Cannot modify frozen list. . FrozenList is also hashable, but only when frozen. Otherwise it also throws a RuntimeError: . >>> fl = FrozenList([17, 42, 'spam']) >>> hash(fl) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "frozenlist/_frozenlist.pyx", line 111, in frozenlist._frozenlist.FrozenList.__hash__ raise RuntimeError("Cannot hash unfrozen list.") RuntimeError: Cannot hash unfrozen list. >>> fl.freeze() >>> hash(fl) 3713081631934410656 >>> dictionary = {fl: 'Vikings'} # frozen fl can be a dict key >>> dictionary {<FrozenList(frozen=True, [1, 2])>: 'Vikings'}
PackageMaintainerDebian Python Team <team+python@tracker.debian.org>
PackageNamepython3-frozenlist
PackageSectionpython
PackageVersion1.3.3-1+b1
SHA-1AD25DD18EA65D979B28450F21A649F39F977B48D
SHA-256AD5DEC266CB857EA59A74B2C9BCA5C3FE546029A033E7E484279595EE89C62AF