frozenlist¶
A list-like structure which implements
collections.abc.MutableSequence.
The list is mutable until FrozenList.freeze() is called,
after which list modifications raise RuntimeError.
API¶
-
class
frozenlist.FrozenList(items)¶ Construct a new non-frozen list from items iterable.
The list implements all
collections.abc.MutableSequencemethods plus two additional APIs.-
frozen¶ A read-only property,
Trueis the list is frozen (modifications are forbidden).
-
freeze()¶ Freeze the list. There is no way to thaw it back.
-
Installation¶
$ pip install frozenlist
The library requires Python 3.6 or newer.
Documentation¶
Communication channels¶
aio-libs discourse group: https://aio-libs.discourse.group
Feel free to post your questions and ideas here.
gitter chat https://gitter.im/aio-libs/Lobby
Requirements¶
Python >= 3.6
License¶
frozenlist is offered under the Apache 2 license.
Source code¶
The project is hosted on GitHub
Please file an issue in the bug tracker if you have found a bug or have some suggestions to improve the library.