python-catalogue 2.1.0-4 source package in Ubuntu

Changelog

python-catalogue (2.1.0-4) unstable; urgency=medium

  * extra_depends=python3-numpy
    Closes: #1029961

 -- Andreas Tille <email address hidden>  Wed, 01 Feb 2023 16:53:27 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Downloads

File Size SHA-256 Checksum
python-catalogue_2.1.0-4.dsc 2.2 KiB 126afcabee591ac7ee815782add1bb1091ae72e67972cafb62dc0ac865ad9370
python-catalogue_2.1.0.orig.tar.gz 43.3 KiB 8f58fe197fd8805e8f53aceea274ad805aa434f86db5136c4b6ee1ad4e9fb50b
python-catalogue_2.1.0-4.debian.tar.xz 2.6 KiB 47d9566d44594f8d5c2247d33f5a364504f6203dfd7d7a10962f3c9a1ca4a406

Available diffs

No changes file available.

Binary packages built by this source

python3-catalogue: super lightweight function registries for Python3 libraries

 catalogue is a tiny, zero-dependencies library that makes it easy to add
 function (or object) registries to your code. Function registries are
 helpful when you have objects that need to be both easily serializable
 and fully customizable. Instead of passing a function into your object,
 you pass in an identifier name, which the object can use to lookup the
 function from the registry. This makes the object easy to serialize,
 because the name is a simple string. If you instead saved the function,
 you'd have to use Pickle for serialization, which has many drawbacks.