python-multi-key-dict 2.0.3-1 source package in Ubuntu

Changelog

python-multi-key-dict (2.0.3-1) unstable; urgency=medium

  * Initial release (Closes: #806854).

 -- Thomas Goirand <email address hidden>  Wed, 02 Dec 2015 08:55:49 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe misc
Xenial release universe misc

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-multi-key-dict_2.0.3-1.dsc 2.1 KiB 74dd1f7264dfc915b76751886550742f7594bf9dffc6bf276b7f32faaaabe254
python-multi-key-dict_2.0.3.orig.tar.xz 7.8 KiB 72e7f9790ec006a3cc7057b0c21ab0d0c4b02b5f7306dc5a3b669d2b76fd616d
python-multi-key-dict_2.0.3-1.debian.tar.xz 2.5 KiB 0401b9a6987e68b10615aba1844790b851ab8c4c2251732d51b35ddde186f797

No changes file available.

Binary packages built by this source

python-multi-key-dict: No summary available for python-multi-key-dict in ubuntu focal.

No description available for python-multi-key-dict in ubuntu focal.

python3-multi-key-dict: Multi key dictionary implementation - Python 3.x

 Implementation of a multi-key dictionary, i.e.:
  (key1[,key2, ..]) => value
 .
 This dictionary has a similar interface to the standard dictionary, but is
 extended to support multiple keys referring to the same element.
 .
 Multi-key dict provides also extended interface for iterating over items and
 keys (e.g. by the key type), which might be useful when creating, e.g.
 dictionaries with index-name key pair allowing to iterate over items using
 either: names or indexes. It can be useful for many other similar use-cases,
 and there is no limit to the number of keys used to map to the value.
 .
 There are few other useful methods, e.g. to iterate over dictionary (by/using)
 selected key type, finding other keys mapping to the same value etc.
 .
 This package contains the Python 3.x module.