autoimport 1.4.0-1 source package in Ubuntu

Changelog

autoimport (1.4.0-1) unstable; urgency=medium

  * New upstream release.
  * Switch Build-Depends on python3-pdm-pep517 to python3-pdm-backend because
    upstream changed build systems.

 -- Edward Betts <edward@4angle.com>  Sun, 03 Dec 2023 08:39:25 +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
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
autoimport_1.4.0-1.dsc 2.0 KiB 40358d6181c1fa0ce3b348a41249ffeae8a94e97df80598706c4a738df01a61f
autoimport_1.4.0.orig.tar.gz 162.9 KiB e0628510ecadeb20dc82d6827dbc3f64af45491e47b2f8c2dd1510812c54421d
autoimport_1.4.0-1.debian.tar.xz 2.8 KiB c795f969df107efcd6b01ea521aa22bc8a3ada5cf37c104f74f62ab82d859afa

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.