python-makefun 1.15.4-1 source package in Ubuntu

Changelog

python-makefun (1.15.4-1) unstable; urgency=medium

  * Team upload.
  * New upstream release. (Closes: #1074638)

 -- Boyuan Yang <email address hidden>  Fri, 19 Jul 2024 14:46:07 -0400

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-makefun_1.15.4-1.dsc 2.1 KiB 274ae84dc02c2137ec67131117b1b0e48d2dcd1afe34099176c1891c2d38b9b9
python-makefun_1.15.4.orig.tar.gz 67.9 KiB c03fc35be1470282ea8b4877dcf7070dba0a3efd1dab63cfb3fdf7627f2e7944
python-makefun_1.15.4-1.debian.tar.xz 2.6 KiB cba0aa474a3874fbb35e4f332a6f2d3950ebe4e076cac769e3582010d50852e8

Available diffs

No changes file available.

Binary packages built by this source

python3-makefun: Small library to dynamically create Python functions

 makefun helps one create functions dynamically, with the signature of their
 choice. It was largely inspired by decorator and functools, and created mainly
 to cover some of their limitations.
 .
 Its typical use cases are:
 .
  - creating signature-preserving function wrappers - just like functools.wraps
    but with accurate TypeError exception raising when user-provided arguments
    are wrong, and with a very convenient way to access argument values;
 .
  - creating function wrappers that have more or less arguments that the
    function they wrap;
 .
  - more generally, creating functions with a signature derived from a
    reference signature;
 .
  - or even creating functions with a signature completely defined at runtime.