-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
Fix error messages in argparse examples. #6435
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
Conversation
The examples in argparse documentation use `error: too few arguments` error message which was removed in this commit f97c59a in 2011. (see python@f97c59a)
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept your contribution by verifying you have signed the PSF contributor agreement (CLA). Unfortunately our records indicate you have not signed the CLA. For legal reasons we need you to sign this before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. Thanks again to your contribution and we look forward to looking at it! |
I've signed CLA already twice and I tried to resubmit this PR but the bot is still saying that |
bugs.p.o has a list of bugs accounts that have signed the CLA, each of which might have a github account in it. If the CLA check can map your github name back to a bugs account that has signed the CLA, then you shouldn't see this. If it doesn't work, you should file a bug report on that. |
@chadmiller-amzn thanks for the information. My CLA is now logged and I can see in my b.p.o profile. Could someone remove the |
Thanks, @suic86! |
GH-6451 is a backport of this pull request to the 3.7 branch. |
The examples in argparse documentation use `error: too few arguments` error message which was removed in this commit f97c59a in 2011. (cherry picked from commit 04e8293) Co-authored-by: suic86 <[email protected]>
The examples in argparse documentation use `error: too few arguments` error message which was removed in this commit f97c59a in 2011. (cherry picked from commit 04e8293) Co-authored-by: suic86 <[email protected]>
GH-6452 is a backport of this pull request to the 3.6 branch. |
Thanks, @zware! :) |
The examples in argparse documentation use `error: too few arguments` error message which was removed in this commit f97c59a in 2011. (cherry picked from commit 04e8293) Co-authored-by: suic86 <[email protected]>
The examples in argparse documentation use `error: too few arguments` error message which was removed in this commit f97c59a in 2011. (cherry picked from commit 04e8293) Co-authored-by: suic86 <[email protected]>
This change replaces
error: too few arguments
error message in examples in argparse documentation for Python 3.x witherror: the following arguments are required:
. Theerror: too few arguments
was removed in this commit f97c59a in 2011.