Result for C10132E54E5F68D9B92FBD947081C553DE14AD87

Query result

Key Value
FileName./usr/share/doc/python3-frozenlist/changelog.Debian.armel.gz
FileSize225
MD503DDE562900A9E7CE935B5F95C521F16
SHA-1C10132E54E5F68D9B92FBD947081C553DE14AD87
SHA-2568802BC1A0D5DF36FB1A3F4681F4E98EDF6505B9FBE319901C9B817C4FEA4A59E
SSDEEP6:Xtnez5uRCRImuOpPk9eQncPcpeAupnPg7UP:Xdez5al+sVcAxCY7w
TLSHT1C4D0A76299E2ED3A9EBC466AD7858942B5412298E2A54C7028A71742F6DB011851C119
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
FileSize26744
MD5A54F3FF58F5D550A11220CF4D5C629F0
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-14E852C84EE5C66D0DDDD8496DE0CC3D796031DFB
SHA-25614E430563FB2A7AAAB73E6060885D97CDAEBB1345E4027037AB5A29CC0191A92