Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to show links to error code docs (once per code) #15449

Merged
merged 6 commits into from Jun 28, 2023

Conversation

ilevkivskyi
Copy link
Member

Fixes #7186

We can probably add some kind of redirect from mypy-lang.org, but I think RTD link is already OK. This PR will need to wait until next release, unless we want to use /latest in the link.

@github-actions

This comment has been minimized.

Copy link
Member

@JelleZijlstra JelleZijlstra left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't like adding yet another option. Maybe this could go in --show-error-context?

@JukkaL
Copy link
Collaborator

JukkaL commented Jun 16, 2023

I don't like the idea of adding this functionality to an existing option, at least at first, since this may make error messages quite verbose. This also doesn't seem to fit nicely under the semantics of existing error flags.

I noticed that the note is sometimes duplicated:

$ mypy --show-error-code-links -c 'int(None)'
<string>:1: error: No overload variant of "int" matches argument type "None"  [call-overload]
<string>:1: note: See https://mypy.rtfd.io/en/stable/_refs.html#code-call-overload for information about this error
<string>:1: note: Possible overload variants:
<string>:1: note:     def int(cls, str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc = ..., /) -> int
<string>:1: note:     See https://mypy.rtfd.io/en/stable/_refs.html#code-call-overload for information about this error
<string>:1: note:     def int(cls, str | bytes | bytearray, /, base: SupportsIndex) -> int
Found 1 error in 1 file (checked 1 source file)

Also maybe the error code link note should come after other, more specific notes. It seems like something that is only occasionally useful, whereas some other notes are important for understanding the details of an error, so I think that existing notes should be shown first.

Maybe we could make the note a bit shorter, without making it less clear? Currently it seems visually quite prominent to me. Random idea: "See https://[...] for more information".

I think that optimally, we'd have some shorthand URL for these links, e.g. a trivial forwarding service that would redirect an URL like https://mypy-lang.org/errors/call-overload to the read the docs site (this is a potential future improvement). This would also let us collect statistics on errors users look up the most often.

We could maybe consider enabling this by default if the notes would be less verbose. One option would be to not generate them for some common error codes that don't have very interesting information in the documentation, such as perhaps arg-type or the argument count error codes.

@ikonst
Copy link
Contributor

ikonst commented Jun 16, 2023

Another option, though questionable how widely supported it is, is to use the hyperlink escape sequence when pretty-printing.

@ilevkivskyi
Copy link
Member Author

Yeah as I mentioned in the PR description having a short redirect from mypy-lang.org would be best, and even started looking into it, but the site looks all static, so it was not immediately obvious how to add redirects, so I decided to start with juts the RTD links. Until then we should keep it behind a flag, we can flip the default when we are sufficiently happy with the links.

Also yeah, this note definitely should be last if there are other notes, and I will fix duplication.

A bit more on motivation for this: I think having these links in the errors are not very useful per se, but it is a good way to advertise their existence, so later one can easily find the docs for given error without going through Google etc.

@github-actions

This comment has been minimized.

@github-actions
Copy link
Contributor

Diff from mypy_primer, showing the effect of this PR on open source code:

graphql-core (https://github.com/graphql-python/graphql-core): typechecking got 1.07x slower (289.9s -> 309.1s)
(Performance measurements are based on a single noisy sample)

@ilevkivskyi
Copy link
Member Author

If there are no more comments, I will merge this later today. Note I am enabling this for self-check, so we can gain some more experience with this.

@ilevkivskyi ilevkivskyi merged commit fca4cae into python:master Jun 28, 2023
20 checks passed
@ilevkivskyi ilevkivskyi deleted the add-error-links branch June 28, 2023 20:57
@asqui
Copy link

asqui commented Apr 9, 2024

A bit late to the party here... I noticed this nice new feature in the Mypy 1.5 Release blog article but I don't see any mention of it in the documentation: https://mypy.readthedocs.io/en/stable/search.html?q=%22--show-error-code-links%22&check_keywords=yes&area=default#

Should we add documentation for this flag here? https://mypy.readthedocs.io/en/stable/command_line.html#configuring-error-messages

@hauntsaninja
Copy link
Collaborator

PR welcome!

@ilevkivskyi
Copy link
Member Author

@asqui Yes, I don't think there is a reason it's not documented, likely I simply forgot to do it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add static links for error codes
6 participants