Your message dated Sun, 3 Jul 2022 22:07:42 +0200
with message-id <e56fd674-4b18-d293-02a9-009ea8240...@debian.org>
and subject line Re: RFP: python3-flake8-blind-except -- A flake8 extension
that checks for blind, catch-all except statements
has caused the Debian Bug report #887105,
regarding RFP: python3-flake8-blind-except -- A flake8 extension that checks
for blind, catch-all except statements
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
887105: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=887105
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
* Package name : python3-flake8-blind-except
Version : 0.1.1
Upstream Author : Elijah Andrews
* URL : https://github.com/elijahandrews/flake8-blind-except
* License : MIT
https://github.com/elijahandrews/flake8-blind-except/blob/master/LICENSE
Programming Lang: Python
Description : A flake8 extension that checks for blind, catch-all except
statements
A flake8 extension that checks for blind, catch-all except: statements.
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
occuring in your code.
It's also usually better style to have many small try-except blocks catching
specific exceptions instead of a giant try: block with a catch-all except: at
the bottom. It's also nicer to your fellow programmers to be a bit more
specific about what exceptions they can expect in specific parts of the code,
and what the proper course of action is when they occur.
--- End Message ---
--- Begin Message ---
Implemented with #992366.
--- End Message ---