python-decorator 5.1.1-3 source package in Ubuntu

Changelog

python-decorator (5.1.1-3) unstable; urgency=medium

  [ Athos Ribeiro ]
  * Team upload.
  * Run tests with pytest instead of setup.py test.

  [ Jeroen Ploemen ]
  * Tests: rewrite to loop over all supported Python versions.

 -- Athos Ribeiro <email address hidden>  Mon, 05 Dec 2022 11:07:15 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release main python

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-decorator_5.1.1-3.dsc 2.1 KiB e79395a9033c04700ac6a2ae01630a57b22f9de2705b5def5bc5b36bf20c96dd
python-decorator_5.1.1.orig.tar.gz 34.2 KiB 637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330
python-decorator_5.1.1-3.debian.tar.xz 4.4 KiB f944cb0b8464f4fe7400e89119eb0cff5cf232f5e4301b7e3903771dbcbc9824

No changes file available.

Binary packages built by this source

python3-decorator: simplify usage of Python decorators by programmers

 Python 2.4 decorators have significantly changed the way Python programs are
 structured.
    * decorators help reduce boilerplate code;
    * decorators help the separation of concerns;
    * decorators enhance readability and maintainability;
    * decorators are very explicit.
 Still, as of now, writing custom decorators correctly requires some
 experience and is not as easy as it could be. For instance, typical
 implementations of decorators involve nested functions and we all know that
 flat is better than nested.
 The aim of the decorator module it to simplify the usage of decorators for
 the average programmer and to popularize decorators usage giving examples of
 useful decorators, such as memoize, tracing, redirecting_stdout, locked, etc.