Result for 0DAB2E3A98F346C0565483277E9839D6CD1D31EC

Query result

Key Value
FileName./usr/lib/python3/dist-packages/frozenlist/_frozenlist.cpython-311-arm-linux-gnueabi.so
FileSize56872
MD599064EB3723DB25ADED4CC3881299B86
SHA-10DAB2E3A98F346C0565483277E9839D6CD1D31EC
SHA-25678CC3A08FB15223540A7B5C41C1FCFB5730C0E343007043D12BBC327A67EB3CC
SSDEEP768:HTqQ20GQShwxIXO874EGzIUuDZ0EMcSOru2aR37r0zGuUpVOyWnbL9oyC4nfyzia:HTJGRhwONvG9IeOrA71S/H6EhbS
TLSHT1B043B7A6F149D7F2C2D92A36B389871933238B74C0CE77458F1496A43BA34E90E3BD45
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