python-public 2.3-4 source package in Ubuntu

Changelog

python-public (2.3-4) unstable; urgency=medium

  * QA upload.

  [ Debian Janitor ]
  * Use secure URI in Homepage field.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * QA Upload.
    Orphan package - see bug 970146.

 -- Jelmer Vernooij <email address hidden>  Sun, 16 Oct 2022 21:51:01 +0100

Upload details

Uploaded by:
Debian QA Group
Uploaded to:
Sid
Original maintainer:
Debian QA Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-public_2.3-4.dsc 2.1 KiB 0b6bfe0f65cbf342b72d81d5a6d728ff32759bb5fb90e30b29736f385cd26756
python-public_2.3.orig.tar.gz 16.4 KiB d6b9167fc3e09a2de2d2adcfc9a1b48d84eab70753c97de3800362e1703e3367
python-public_2.3-4.debian.tar.xz 33.3 KiB d4d3d456ea64d88772919d00ab6a1d46febb8f9f4f682c29902bc8993312826a

Available diffs

No changes file available.

Binary packages built by this source

python3-public: @public decorator for adding names to __all__

 His module is a library that provides two simple decorators called @public
 and @private to document the publicity of names in your Python module. These
 decorators are used to control what will be imported when someone uses the
 from <module> import * statement. It's usually good practice to use a special
 attribute called __all__ to explicitly list the public names you want exposed
 in your module.