Result for C3DF64441F60C8304F6E2CE198687D5A02523783

Query result

Key Value
FileName./usr/share/doc/python3-frozenlist/changelog.Debian.arm64.gz
FileSize215
MD5195896D28F56562BA63DD12261700578
RDS:package_id288589
SHA-1C3DF64441F60C8304F6E2CE198687D5A02523783
SHA-256F629FA986A48DCF2BE63438D6EA1CC254B4FBF17C883766CDDCC1B1389C2F915
SSDEEP6:Xtplo4QriD/PEP5wh9GaNKerZRGmI86ja4p4Z9Lpsm/:XPybqEP+9xZZR+pm91L/
TLSHT154D023FBD971E6B1C4014179C4914F92103595619E54C8876B033635DFBF4219E87199
insert-timestamp1670553858.7311335
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