Result for 17B9A69DD0DA634891FE0B3667D3ECB2A2FE3A7B

Query result

Key Value
FileName./usr/lib/python3/dist-packages/frozenlist/_frozenlist.cpython-310-aarch64-linux-gnu.so
FileSize71840
MD57DE29C2B28BB8934F900CAC43149F59A
RDS:package_id288589
SHA-117B9A69DD0DA634891FE0B3667D3ECB2A2FE3A7B
SHA-256FE8A390181BB82A6BB1D56F448381689082AC0542192C99C8BEB069B709AD8DC
SSDEEP768:ynQaG7ZpcALaTDnq5Ok5vYdvsAjpFOgF6C3AZ34V7qiRAjqz47GgxmS6:yQaecjwD5vAsA1FOgkZoV7qlqz46c6
TLSHT148632A5DF50EBA1ED58AE3389E878B717733A808D366D192A514C37E36C76C16E35408
insert-timestamp1670553858.7580585
sourcemodern.db
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
FileNamepython3-frozenlist_1.2.0-1+b1_arm64.deb
FileSize61980
MD511F2A7F604DBF0EA39F440BA06157CAB
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.2.0-1+b1
RDS:package_id288589
SHA-1139359E7F654C1B543D496D52B27CDE7C6206376
SHA-256C78D4446040D6462C5279416C0823E76D4AC1F70CD5587E88499845F86256111
insert-timestamp1670545116.4727237
sourcemodern.db