We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I noticed that the help() function does not return any documentation for the match statement:
match
help('match') # No Python documentation found for 'match'
This appears to be because the match keyword is missing from the keywords attribute of the pydoc.Helper class, which is used to look up help topics.
keywords
pydoc.Helper
To fix this, "match" (and possibly "case", for completeness) should be added to the keywords dictionary.
case
help
The text was updated successfully, but these errors were encountered:
I wonder if there are other cases of this, I presume there are if these were missed.
Sorry, something went wrong.
I have come across several during development, which suggests that it is likely more cases have gone unnoticed.
No branches or pull requests
Documentation
I noticed that the help() function does not return any documentation for the
match
statement:This appears to be because the
match
keyword is missing from thekeywords
attribute of thepydoc.Helper
class, which is used to look up help topics.To fix this, "match" (and possibly "case", for completeness) should be added to the
keywords
dictionary.Linked PRs
match
andcase
tohelp
topics #132784The text was updated successfully, but these errors were encountered: