python-immutabledict 2.2.3-1 source package in Ubuntu

Changelog

python-immutabledict (2.2.3-1) unstable; urgency=medium

  * New upstream version 2.2.3

 -- Andrius Merkys <email address hidden>  Sun, 13 Nov 2022 03:33:31 -0500

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-immutabledict_2.2.3-1.dsc 2.2 KiB badee09df6c82e8b9501bad192002147e578e98911b38fd9c39e3ce4ab4b4014
python-immutabledict_2.2.3.orig.tar.gz 19.1 KiB 5af4d8606541879dea187877d54235e21c49b6fa1e6b1ab6b03d2121406c811e
python-immutabledict_2.2.3-1.debian.tar.xz 2.5 KiB 2fd00575bafbaa3e654e6ccc6004ae85e591010e3b66d0694908c4cf213f275a

Available diffs

No changes file available.

Binary packages built by this source

python3-immutabledict: immutable wrapper around dictionaries (fork of frozendict)

 Immutabledict implements the complete mapping interface and can be
 used as a drop-in replacement for dictionaries where immutability is
 desired. The immutabledict constructor mimics dict, and all of the
 expected interfaces (iter, len, repr, hash, getitem) are provided. Note
 that an immutabledict does not guarantee the immutability of its values,
 so the utility of hash method is restricted by usage.
 .
 The only difference is that the copy() method of immutable takes variable
 keyword arguments, which will be present as key/value pairs in the new,
 immutable copy.