Key | Value |
---|---|
FileName | ./usr/share/doc/python3-frozenlist/changelog.gz |
FileSize | 830 |
MD5 | D4913135CC38550A05CCEF44F028723A |
RDS:package_id | 288587 |
SHA-1 | 76081A17F2603E7A207BA8A7EC58D01694B06367 |
SHA-256 | 0E41A74424B09E76E5D68BA1961014D49ADAE743CE323BC3861372CCDB455C39 |
SSDEEP | 24:XNjOaIgwtpTHcujiCRZpTTn2MXusjIiSYgjGYZJgju:XDu9H+OTnjXPjIi2ZJgq |
TLSH | T1D401525754323B915180F36429F134C3D32BF4154578D87BD676F31544F2EE2028108E |
insert-timestamp | 1670554395.0497968 |
source | modern.db |
hashlookup:parent-total | 5 |
hashlookup:trust | 75 |
The searched file hash is included in 5 parent files which include package known and seen by metalookup. A sample is included below:
Key | Value |
---|---|
FileName | python3-frozenlist_1.2.0-1+b1_arm64.deb |
FileSize | 61980 |
MD5 | 11F2A7F604DBF0EA39F440BA06157CAB |
PackageDescription | list-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'} |
PackageMaintainer | Debian Python Team <team+python@tracker.debian.org> |
PackageName | python3-frozenlist |
PackageSection | python |
PackageVersion | 1.2.0-1+b1 |
RDS:package_id | 288589 |
SHA-1 | 139359E7F654C1B543D496D52B27CDE7C6206376 |
SHA-256 | C78D4446040D6462C5279416C0823E76D4AC1F70CD5587E88499845F86256111 |
insert-timestamp | 1670545116.4727237 |
source | modern.db |
Key | Value |
---|---|
FileSize | 61048 |
MD5 | C4CC5310A501D416C81FEA601127D277 |
PackageDescription | list-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'} |
PackageMaintainer | Debian Python Team <team+python@tracker.debian.org> |
PackageName | python3-frozenlist |
PackageSection | python |
PackageVersion | 1.2.0-1+b1 |
SHA-1 | 7C0FD57C991777A62019573ABFD08E42B140069A |
SHA-256 | 6D4BE8EE6A0A567FB9AD57375349C4584ECF86F4DC5E2811E88F4FBFB9614A85 |
Key | Value |
---|---|
FileName | python3-frozenlist_1.2.0-1+b1_i386.deb |
FileSize | 65136 |
MD5 | 97AE0D46FDAD7DBE07B4A9C810FE71B6 |
PackageDescription | list-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'} |
PackageMaintainer | Debian Python Team <team+python@tracker.debian.org> |
PackageName | python3-frozenlist |
PackageSection | python |
PackageVersion | 1.2.0-1+b1 |
RDS:package_id | 288588 |
SHA-1 | E65FF6234F15EC83E265F06873027CC80808931B |
SHA-256 | B4382D4547A041702A7E4627E8FB7142CB878FF3AEEB4A8E35983432E7A41DA5 |
insert-timestamp | 1670545109.8988345 |
source | modern.db |
Key | Value |
---|---|
FileSize | 61036 |
MD5 | 8A083709F428781ED564F0CCE57FCCD8 |
PackageDescription | list-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'} |
PackageMaintainer | Debian Python Team <team+python@tracker.debian.org> |
PackageName | python3-frozenlist |
PackageSection | python |
PackageVersion | 1.2.0-1+b1 |
SHA-1 | BDA9EFA9B332A9F1797342F66CF92E1521AA7E2A |
SHA-256 | 0DA8CDEE3633EE00942F6BF34BEE9D51444E467472A2DB87CA79B158604AAA83 |
Key | Value |
---|---|
FileName | python3-frozenlist_1.2.0-1+b2_amd64.deb |
FileSize | 63872 |
MD5 | D31568EF5784934E0B021232CC27A2B1 |
PackageDescription | list-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'} |
PackageMaintainer | Debian Python Team <team+python@tracker.debian.org> |
PackageName | python3-frozenlist |
PackageSection | python |
PackageVersion | 1.2.0-1+b2 |
RDS:package_id | 288587 |
SHA-1 | F096117ECFFF9176295AFD81B533247EE35D53D2 |
SHA-256 | D1BA7244E955F05BF211949D39A406B2F8BDD94104ADA61128BB08B6C011C7D9 |
insert-timestamp | 1670545125.3326628 |
source | modern.db |