python-catalogue 2.1.0-5 source package in Ubuntu

Changelog

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

  * Team Upload.
  * Add a patch to use Pydantic 2.x legacy API.

 -- Alexandre Detiste <email address hidden>  Thu, 01 Aug 2024 01:17:10 +0200

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

Downloads

File Size SHA-256 Checksum
python-catalogue_2.1.0-5.dsc 2.2 KiB a9f970d5d9db7299a2f63d20327f89f21929c586c98d9ddeb3fff2efc2fe042f
python-catalogue_2.1.0.orig.tar.gz 43.3 KiB 8f58fe197fd8805e8f53aceea274ad805aa434f86db5136c4b6ee1ad4e9fb50b
python-catalogue_2.1.0-5.debian.tar.xz 3.2 KiB f132a61a37db20e33e3b40980e7ac5abfba4efb6349631da5a7c6f6b094c5aec

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.