Result for 58B802538A51F49472CD2EB76BFBCED5B14F3500

Query result

Key Value
FileName./usr/share/doc/python3-frozenlist/changelog.Debian.armhf.gz
FileSize222
MD50ADCB7A950EBE1DD1A45FFCCEFE82681
SHA-158B802538A51F49472CD2EB76BFBCED5B14F3500
SHA-256FE24CE00B1C2CBA019C1BAB9A5BC7CA12F06439C493ADF473A4E1CBD7396164E
SSDEEP6:XtBuc290fWwDrXdZZs72iA/kk/Ak7xrxMrCLgF0Rkln:XR29wWsrXdZZa2iAcz+f5LgO6l
TLSHT12BD097B15A864302B090887E2AC12DB4F7002209639484446C0950A014C07083FA0B39
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