[ Source: frozenlist ]
Paketti: python3-frozenlist (1.5.0-1 ja muut)
Links for python3-frozenlist
Debian-palvelut:
Imuroi lähdekoodipaketti frozenlist:
Ylläpitäjät:
External Resources:
- Kotisivu [github.com]
Samankaltaisia paketteja:
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'}
Muut pakettiin python3-frozenlist liittyvät paketit
|
|
|
|
-
- dep: libc6 (>= 2.16) [x32]
- GNU-C-kirjasto: jaetut kirjastot
myös näennäispaketti, jonka toteuttaa libc6-udeb
- dep: libc6 (>= 2.17) [arm64, ppc64el]
- dep: libc6 (>= 2.2) [hppa]
- dep: libc6 (>= 2.27) [riscv64]
- dep: libc6 (>= 2.4) [ei alpha, arm64, hppa, ia64, ppc64el, riscv64, sh4, x32]
- dep: libc6 (>= 2.40) [sh4]
-
- dep: libc6.1 (>= 2.1.3) [alpha]
- GNU-C-kirjasto: jaetut kirjastot
myös näennäispaketti, jonka toteuttaa libc6.1-udeb
- dep: libc6.1 (>= 2.37) [ia64]
-
- dep: python3
- interactive high-level object-oriented language (default python3 version)
- dep: python3 (<< 3.13)
- dep: python3 (>= 3.11~) [ia64]
- dep: python3 (>= 3.12~) [ei ia64]
Imuroi python3-frozenlist
Arkkitehtuuri | Versio | Paketin koko | Koko asennettuna | Tiedostot |
---|---|---|---|---|
alpha (epävirallinen siirros) | 1.5.0-1 | 43.3 kt | 186.0 kt | [tiedostoluettelo] |
amd64 | 1.5.0-1 | 46.5 kt | 162.0 kt | [tiedostoluettelo] |
arm64 | 1.5.0-1+b1 | 43.4 kt | 187.0 kt | [tiedostoluettelo] |
armel | 1.5.0-1 | 41.1 kt | 143.0 kt | [tiedostoluettelo] |
armhf | 1.5.0-1 | 41.8 kt | 119.0 kt | [tiedostoluettelo] |
hppa (epävirallinen siirros) | 1.5.0-1 | 43.6 kt | 157.0 kt | [tiedostoluettelo] |
i386 | 1.5.0-1 | 47.3 kt | 163.0 kt | [tiedostoluettelo] |
ia64 (epävirallinen siirros) | 1.4.0-1+b1 | 68.3 kt | 410.0 kt | [tiedostoluettelo] |
m68k (epävirallinen siirros) | 1.5.0-1 | 39.5 kt | 144.0 kt | [tiedostoluettelo] |
mips64el | 1.5.0-1 | 40.7 kt | 189.0 kt | [tiedostoluettelo] |
ppc64 (epävirallinen siirros) | 1.5.0-1 | 46.1 kt | 187.0 kt | [tiedostoluettelo] |
ppc64el | 1.5.0-1 | 46.3 kt | 185.0 kt | [tiedostoluettelo] |
riscv64 | 1.5.0-1 | 46.8 kt | 138.0 kt | [tiedostoluettelo] |
s390x | 1.5.0-1 | 45.3 kt | 162.0 kt | [tiedostoluettelo] |
sh4 (epävirallinen siirros) | 1.5.0-1 | 49.4 kt | 183.0 kt | [tiedostoluettelo] |
sparc64 (epävirallinen siirros) | 1.5.0-1 | 39.0 kt | 1,084.0 kt | [tiedostoluettelo] |
x32 (epävirallinen siirros) | 1.5.0-1 | 46.4 kt | 152.0 kt | [tiedostoluettelo] |