Skip to main content

Flake8 checker for raw literals inside raises.

Reason this release was yanked:

Flake8 extension broken

Project description

flake8-errmsg

Actions Status GitHub Discussion Gitter

PyPI version PyPI platforms

Intro

A checker for flake8 that helps format nice error messages. Currently there are two checks:

  • EM101: Check for raw usage of string literals in Exception raising.
  • EM102: Check for raw usage of f-string literals in Exception raising.

The issue is that Python includes the line with the raise in the default traceback (and most other formatters, like Rich and IPython to too). That means a user gets a message like this:

sub = "Some value"
raise RuntimeError(f"{sub!r} is incorrect")
Traceback (most recent call last):
  File "tmp.py", line 2, in <module>
    raise RuntimeError(f"{sub!r} is incorrect")
RuntimeError: 'Some value' is incorrect

If this is longer or more complex, the duplication can be quite confusing for a user unaccustomed to reading tracebacks.

While if you always assign to something like msg, then you get:

sub = "Some value"
msg = f"{sub!r} is incorrect"
raise RunetimeError(msg)
Traceback (most recent call last):
  File "tmp.py", line 3, in <module>
    raise RuntimeError(msg)
RuntimeError: 'Some value' is incorrect

Now there's a simpler traceback, less code, and no double message. If you have a long message, this also often formats better when using Black, too.

Reminder: Libraries should produce tracebacks with custom error classes, and applications should print nice errors, usually without a traceback, unless something unexpected occurred. An app should not print a traceback for an error that is known to be triggerable by a user.

Usage

Just add this to your .pre-commit-config.yaml flake8 check under additional_dependencies. If you use extend-select, you should need no other config.

You can also manually run this check (without flake8's noqa filtering) via script entry-point (pipx run flake8-errmsg <files>) or module entry-point (python -m flake8_errmsg <files> when installed).

FAQ

Q: Why not look for "".format() too?
A: Tools like pyupgrade should help move to fstrings, so these should be rare. But it would likely be easy to add.

Q: Why Python 3.10+ only?
A: This is a static checker and for developers. Developers and static checks should be on 3.10 already. And I was lazy and match statements are fantastic for this sort of thing. And the AST module changed in 3.8 anyway.

Q: What other sorts of checks are acceptable?
A: Things that help with nice errors. For example, maybe requiring raise SystemExit(n) over sys.exit, exit, etc.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flake8_errmsg-0.2.1.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

flake8_errmsg-0.2.1-py3-none-any.whl (8.6 kB view details)

Uploaded Python 3

File details

Details for the file flake8_errmsg-0.2.1.tar.gz.

File metadata

  • Download URL: flake8_errmsg-0.2.1.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for flake8_errmsg-0.2.1.tar.gz
Algorithm Hash digest
SHA256 03590f8a3275735c3fdb517b0a2dde502ea0ea311b89120bb51e98e5fcb4e41f
MD5 6c95c6f8ab20d3283cc7e92324423213
BLAKE2b-256 ebe61c0e9b44d5e53a2d58297b22a8943f4efd3802b848efb01cb93112a9f544

See more details on using hashes here.

File details

Details for the file flake8_errmsg-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for flake8_errmsg-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0e4489b38b4d3c6d8c96f4916c8ddfaf723864a542ddfe7fe5b4e53d73cd1b9c
MD5 a11292841b57e4bd357d092ac405498a
BLAKE2b-256 f6aafaf4ef66e6c3cf8490924ef6cad0151149f3265024e52f129ce93e4c6bfd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page