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

Clean up argparse hacks #13450

Merged
merged 1 commit into from
Feb 1, 2025
Merged

Clean up argparse hacks #13450

merged 1 commit into from
Feb 1, 2025

Conversation

hamdanal
Copy link
Contributor

@hamdanal hamdanal commented Feb 1, 2025

Some of these hacks are obsolete, some of them are due to wrong assumptions.

Comment on lines -36 to -40
# more precisely, Literal["store", "store_const", "store_true",
# "store_false", "append", "append_const", "count", "help", "version",
# "extend"], but using this would make it hard to annotate callers
# that don't use a literal argument
_ActionStr: TypeAlias = str
Copy link
Contributor Author

Choose a reason for hiding this comment

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

See comment in the code below. This can never be literal because users can register actions

Comment on lines -41 to -44
# more precisely, Literal["?", "*", "+", "...", "A...",
# "==SUPPRESS=="], but using this would make it hard to annotate
# callers that don't use a literal argument
_NArgsStr: TypeAlias = str
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Moved the comment below, there is no need for a type alias

Comment on lines -50 to +41
_SUPPRESS_T = NewType("_SUPPRESS_T", str)
SUPPRESS: _SUPPRESS_T | str # not using Literal because argparse sometimes compares SUPPRESS with is
# the | str is there so that foo = argparse.SUPPRESS; foo = "test" checks out in mypy
SUPPRESS: Final = "==SUPPRESS=="
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This comment is obsolete, both mypy and pyright are happy with this idiom

import argparse
reveal_type(argparse.SUPPRESS)  # reveal "Literal['==SUPPRESS==']"
help = argparse.SUPPRESS
help = "help"

Also pyright recently learned how to correctly narrow with identity checking a literal (using if help is argparse.SUPPRESS), mypy already worked fine

Copy link
Contributor

Choose a reason for hiding this comment

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

FYI This particular change might still have been required. Removing it broke the mypyc compiled test runs. See python/mypy#18580.

I partially reverted this commit in python/mypy#18683 -> python/mypy@756e61a to fix the mypy typeshed sync.

Copy link
Contributor

github-actions bot commented Feb 1, 2025

According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉

Copy link
Collaborator

@hauntsaninja hauntsaninja left a comment

Choose a reason for hiding this comment

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

Looks good!

@hauntsaninja hauntsaninja merged commit 89b5afa into python:main Feb 1, 2025
55 checks passed
@hamdanal hamdanal deleted the argparse branch February 2, 2025 08:28
This was referenced Feb 15, 2025
hauntsaninja pushed a commit to python/mypy that referenced this pull request Feb 16, 2025
Source commit:

python/typeshed@cc8ca93

Partially revert python/typeshed#13450 to fix
mypyc runs.
x612skm pushed a commit to x612skm/mypy-dev that referenced this pull request Feb 24, 2025
Source commit:

python/typeshed@cc8ca93

Partially revert python/typeshed#13450 to fix
mypyc runs.
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.

3 participants