python-frozendict 1.2-2 source package in Ubuntu

Changelog

python-frozendict (1.2-2) unstable; urgency=medium

  [ Ondřej Nový ]
  * Use debhelper-compat instead of debian/compat.

  [ Thomas Goirand ]
  * Removed Python 2 support (Closes: #937766).
  * Fixed d/copyright ordering and years.

 -- Thomas Goirand <email address hidden>  Sat, 14 Sep 2019 22:41:01 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-frozendict_1.2-2.dsc 2.0 KiB 5758dc339a1d68458f304a4275d693ee9e16a7eccaf04d4203fd8e531f66ffe4
python-frozendict_1.2.orig.tar.gz 2.6 KiB 774179f22db2ef8a106e9c38d4d1f8503864603db08de2e33be5b778230f6e45
python-frozendict_1.2-2.debian.tar.xz 2.6 KiB 7c823726cfb08d939914b34da38830ec2bcb0b860149c4d51e5022f707b21d56

Available diffs

No changes file available.

Binary packages built by this source

python3-frozendict: immutable dictionary - Python 3.x

 Frozendict is an immutable wrapper around dictionaries that implements the
 complete mapping interface. It can be used as a drop-in replacement for
 dictionaries where immutability is desired.
 .
 Of course, this is Python, and you can still poke around the object's
 internals if you want.
 .
 The frozendict constructor mimics dict, and all of the expected interfaces
 (iter, len, repr, hash, getitem) are provided. Note that a frozendict 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 frozendict takes variable
 keyword arguments, which will be present as key/value pairs in the new,
 immutable copy.
 .
 This package contains the Python 3.x module.