python-frozendict 1.2-1 source package in Ubuntu

Changelog

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

  [ Ondřej Nový ]
  * d/control: Set Vcs-* to salsa.debian.org
  * d/watch: Use https protocol
  * d/rules: Changed UPSTREAM_GIT protocol to https
  * d/control: Use <email address hidden> as maintainer
  * d/control: Add trailing tilde to min version depend to allow
    backports

  [ Daniel Baumann ]
  * Update copyright format url.
  * Update maintainer field.
  * Run wrap-and-sort -bast.
  * Update standards version to 4.0.0.
  * Remove gbp.conf, not used anymore or should be specified in the
    developers dotfiles.
  * Update standards version to 4.1.0.

  [ Andrej Shadura ]
  * New upstream release.

 -- Andrej Shadura <email address hidden>  Fri, 21 Dec 2018 23:38:17 +0100

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

Builds

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-frozendict_1.2-1.dsc 1.9 KiB c7226f5f889162aa467f6eb8fb6bdcabd0ef1b0855edb3c950558c7fe6f8b127
python-frozendict_1.2.orig.tar.gz 2.6 KiB 774179f22db2ef8a106e9c38d4d1f8503864603db08de2e33be5b778230f6e45
python-frozendict_1.2-1.debian.tar.xz 2.8 KiB 9ee730e06275ab257f5ccad2801b6a0d7bcf35d9a1efcfd108c7470895b83d4d

Available diffs

No changes file available.

Binary packages built by this source

python-frozendict: No summary available for python-frozendict in ubuntu focal.

No description available for python-frozendict in ubuntu focal.

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.