flake8-blind-except 0.2.1-1 source package in Ubuntu

Changelog

flake8-blind-except (0.2.1-1) unstable; urgency=medium

  * Team upload.

  [ Jose Luis Rivero ]
  * Move package under the scope of python-team

  [ Jochen Sprickerhof ]
  * New upstream version 0.2.1
  * Drop duplicate build dependency

 -- Jochen Sprickerhof <email address hidden>  Mon, 04 Apr 2022 17:17:01 +0200

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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
flake8-blind-except_0.2.1-1.dsc 2.1 KiB 069d3f574b101405a2d2b752eeb20faba94bed5e6a861228cfaa1a35f8c739bd
flake8-blind-except_0.2.1.orig.tar.gz 3.2 KiB d418273d9595f18d25ef8bd43af27f78aa5a29753207990854bf3ecb198cd955
flake8-blind-except_0.2.1-1.debian.tar.xz 2.3 KiB aa486bd869b8715b341c00ad544ea574d5f3de269e7947522cf1218b6a70b0a7

Available diffs

No changes file available.

Binary packages built by this source

python3-flake8-blind-except: flake8 extension that checks for blind, catch-all except

 A flake8 extension that checks for blind, catch-all except: and except
 Exception: statements.
 .
 As of pycodestyle 2.1.0, "E722 do not use bare except, specify exception
 instead" is built-in. However, bare Exception and BaseException are still
 allowed. This extension flags them as B902.
 .
 Using except without explicitly specifying which exceptions to catch is
 generally considered bad practice, since it catches system signals like SIGINT.
 You probably want to handle system interrupts differently than exceptions
 occurring in your code.