autoimport 1.2.2-2 source package in Ubuntu

Changelog

autoimport (1.2.2-2) unstable; urgency=medium

  * Source-only upload to allow package to migrate to testing.

 -- Edward Betts <edward@4angle.com>  Wed, 10 Aug 2022 12:18:13 +0100

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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
autoimport_1.2.2-2.dsc 2.0 KiB 0669fe1c2c9caf45ee59c63f6bf14a2079006744835f16d57813cdb5e6e24f61
autoimport_1.2.2.orig.tar.gz 159.0 KiB 728b8e644f8287ab9e35630411432703c5795ff76ecf1b10dcacd8b8137b394c
autoimport_1.2.2-2.debian.tar.xz 2.5 KiB 33c54c2d777e4a5bd1f23c2fc093a79ed6e85c780e5e4fa16954c430427a2094

Available diffs

No changes file available.

Binary packages built by this source

autoimport: Automatically import missing Python libraries

 Throughout the development of a Python program you continuously need to manage
 the Python import statements either because you need one new object or because
 you no longer need it. This means that you need to stop writing whatever you
 were writing, go to the top of the file, create or remove the import statement
 and then resume coding.
 .
 This workflow break is annoying and almost always unnecessary. 'autoimport'
 solves this problem if you execute it whenever you have an import error, for
 example by configuring your editor to run it when saving the file.