Result for 7FB995A73F0B721B5F55BF365DB80B0F8DCCA412

Query result

Key Value
FileName./usr/lib/python3/dist-packages/frozenlist-1.3.3.dist-info/RECORD
FileSize740
MD5C6A0B0CE78A1E5833643DAA661615567
SHA-17FB995A73F0B721B5F55BF365DB80B0F8DCCA412
SHA-256FEA5967A94911DFD652D8403D11EC0E043B79BA3FD462CFBCF2284EEBE9D41F3
SSDEEP12:DNLbHNH4NXcUlFNl260DFVqAT/4LvkS4+sXVYtTOruSbQK4L4d/xd8:DN/NH4N5lFNlz066ytidQK4u/H8
TLSHT14B01C08C617EF50F66D454CFCF8BC725A807DB97A00B75409B26C2F874C51804E1450C
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