Result for E9AD90CEC7F72C0CC19DC702E6AC288E898BF50A

Query result

Key Value
FileName./usr/lib/python3/dist-packages/frozenlist-1.3.3.dist-info/RECORD
FileSize742
MD57B6ED54C1A8F50600E9728EA62A86A39
SHA-1E9AD90CEC7F72C0CC19DC702E6AC288E898BF50A
SHA-2564A4B62F2DCC74C2F9AB6220674F11D2CAA97F234E805C0E5DD6907EC92F91959
SSDEEP12:DNLbHNH4NX3lGSTQLNl260DFVqAT/4LvkS4+sXVYWYTELS4NbQK4L4d/xd8:DN/NH4NfaNlz066yWY4LSwQK4u/H8
TLSHT18701CB8CA67DF50FA6E854CFCF8BD725F817CB9B60066480AB66C2E574C92400E2890D
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