autoimport 1.3.3-1 source package in Ubuntu

Changelog

autoimport (1.3.3-1) unstable; urgency=medium

  * New upstream release.
  * Update Standards-Version.
  * Update copyright year.

 -- Edward Betts <edward@4angle.com>  Thu, 16 Feb 2023 10:13:19 +0000

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
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
autoimport_1.3.3-1.dsc 2.0 KiB d66a1edaaa484c24fddd6eb175d692eacd9206891d32d0a9ce663f572e006ab0
autoimport_1.3.3.orig.tar.gz 196.8 KiB 2b0ab5f6ec66c5150fde2f07fd3320bb1b94e54df877a10ba0e0972ac11a3529
autoimport_1.3.3-1.debian.tar.xz 2.7 KiB 44b40dd70d78d227479147deb8b3113053ee8f2f712d2d05a493cb4aedc736e0

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.