Result for AEC132EA3B90E481D85FBBF8A8494B2B2060203E

Query result

Key Value
FileName_frozenlist.cpython-311-x86_64-linux-gnu.so
FileSize72032
MD5549FCC2DB4603AE01660C7A8C6B244C3
RDS:package_id294710
SHA-1AEC132EA3B90E481D85FBBF8A8494B2B2060203E
SHA-256E72D92883AA671D9E8D022072975A7DED76C735091217B7AEBA56FE984507EF8
SSDEEP768:1r3KobaDgaHQVJx9Bz/SU3xaQ0h1FP3+HalMaxFcKUiRI5izAlbk:1raobwwbxzfxsb3+2rFJVAl
TLSHT1F263F85F716814BDC0B88431CCA78B721B62F915A13177EF1284EE753F82EE04F1AA69
insert-timestamp1696444416.4992664
sourcedb.sqlite
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
FileNamepython3-frozenlist_1.3.3-1+b1_amd64.deb
FileSize30028
MD5D3CBEB4481C2A61988244B34019221AB
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
RDS:package_id294706
SHA-14739B836105F97280076BACC38EE0251E59AB08C
SHA-25639EF587C1B82AA4B7AD5293934E662033F2C8C1CB91B1201ACB31B4BBC314EEE
insert-timestamp1687507928.8446434
sourcedb.sqlite