Result for 75AE135AC3806B7F2D0029F2473C5D2F8BD99BE0

Query result

Key Value
FileName./usr/share/doc/python3-frozenlist/changelog.Debian.armel.gz
FileSize214
MD59ADBC35D334273399E916C8A3F815042
SHA-175AE135AC3806B7F2D0029F2473C5D2F8BD99BE0
SHA-2560CC943F0B6728D92102E599630D381CF9EB2D86B725793200666665A72A6E28D
SSDEEP3:FttSvj1Cm1iddyTtgupur6u/mTvFP6vfRj/gohNlbLAmtV0LOyDJDuOHm5ScfroE:Xtcq5wk67NP6vfRDgoZLFV0xHATjC718
TLSHT12DD023516D994577E55DA5E0F0644C67763930B0347764235435155174C20BB70CE35C
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
FileSize61036
MD58A083709F428781ED564F0CCE57FCCD8
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
SHA-1BDA9EFA9B332A9F1797342F66CF92E1521AA7E2A
SHA-2560DA8CDEE3633EE00942F6BF34BEE9D51444E467472A2DB87CA79B158604AAA83