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

bpo-33197: Update error message of invalid inspect.Parameters #6636

Merged
merged 1 commit into from
May 29, 2018

Conversation

corona10
Copy link
Member

@corona10 corona10 commented Apr 29, 2018

The error message from constructing invalid inspect.
Parameters was confused due to print integer enum value (parameter kind).
It is updated to print a string value of parameter kind.

https://bugs.python.org/issue33197

@corona10
Copy link
Member Author

For reviewers,

Please add labels needs backport to 3.7/3.6

@corona10 corona10 force-pushed the bpo-33197 branch 2 times, most recently from a226596 to 67478b6 Compare April 29, 2018 15:22
Copy link
Member

@serhiy-storchaka serhiy-storchaka left a comment

Choose a reason for hiding this comment

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

kind can be not only _ParameterKind member here, but an integer. You need first make a _ParameterKind from it: _ParameterKind(kind).

There is the same formatting error at line 2465. The message at line 2739 can be improved too.

The message at line 2456 should contain the name of the type instead of the repr of the value.

@bedevere-bot
Copy link

A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated.

Once you have made the requested changes, please leave a comment on this pull request containing the phrase I have made the requested changes; please review again. I will then notify any core developers who have left a review that you're ready for them to take another look at this pull request.

And if you don't make the requested changes, you will be poked with soft cushions!

@serhiy-storchaka serhiy-storchaka added type-bug An unexpected behavior, bug, or error needs backport to 3.6 labels Apr 29, 2018
@corona10
Copy link
Member Author

@serhiy-storchaka
Thenk you for kind review, I will reflect your review soon.

@corona10 corona10 changed the title bpo-33197: Update error message of invalid inspect.Parameters [WIP] bpo-33197: Update error message of invalid inspect.Parameters Apr 30, 2018
@corona10 corona10 force-pushed the bpo-33197 branch 2 times, most recently from 96620b3 to 4fb6fca Compare April 30, 2018 08:23
@corona10 corona10 changed the title [WIP] bpo-33197: Update error message of invalid inspect.Parameters bpo-33197: Update error message of invalid inspect.Parameters Apr 30, 2018
@corona10
Copy link
Member Author

I have made the requested changes; please review again

@bedevere-bot
Copy link

Thanks for making the requested changes!

@serhiy-storchaka: please review the changes made to this pull request.

Copy link
Member

@1st1 1st1 left a comment

Choose a reason for hiding this comment

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

This is a regression from blindly converting everything in stdlib to use enums. Thanks for fixing it!

I don't like the 'VAR_KEYWORD cannot have default values' message, it's rather cryptic. Please add a mapping of parameter-kinds to human-readable form and use that mapping to render good-looking error messages. Thanks!

Lib/inspect.py Outdated
if kind in (_VAR_POSITIONAL, _VAR_KEYWORD):
msg = '{} parameters cannot have default values'.format(kind)
if self._kind in (_VAR_POSITIONAL, _VAR_KEYWORD):
msg = f'{self._kind!s} cannot have default values'
Copy link
Member

Choose a reason for hiding this comment

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

Why did you remove 'parameters' word from the message?

Copy link
Member Author

@corona10 corona10 May 1, 2018

Choose a reason for hiding this comment

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

@1st1
No reason for it, I revert it.

@bedevere-bot
Copy link

A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated.

Once you have made the requested changes, please leave a comment on this pull request containing the phrase I have made the requested changes; please review again. I will then notify any core developers who have left a review that you're ready for them to take another look at this pull request.

@corona10 corona10 changed the title bpo-33197: Update error message of invalid inspect.Parameters [WIP]bpo-33197: Update error message of invalid inspect.Parameters May 1, 2018
@corona10 corona10 changed the title [WIP]bpo-33197: Update error message of invalid inspect.Parameters bpo-33197: Update error message of invalid inspect.Parameters May 1, 2018
@corona10
Copy link
Member Author

corona10 commented May 1, 2018

@1st1
Updated!

@corona10
Copy link
Member Author

corona10 commented May 25, 2018

@1st1, @serhiy-storchaka: Updated!

I will send a new PR about adding property after this PR is merged!(3.8)

@corona10
Copy link
Member Author

@1st1

Please take a look if you have a time 👍

@@ -1444,6 +1444,19 @@ def f6(a, b, c):
with self.assertRaisesRegex(TypeError, "'a', 'b' and 'c'"):
inspect.getcallargs(f6)

# bpo-33197
with self.assertRaisesRegex(ValueError,
'variadic keyword parameters cannot have default values'):
Copy link
Member

Choose a reason for hiding this comment

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

Long line

inspect.Parameter("foo", kind=inspect.Parameter.VAR_KEYWORD,
default=42)
with self.assertRaisesRegex(ValueError,
"invalid value for 'Parameter.kind' attribute"):
Copy link
Member

Choose a reason for hiding this comment

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

Long line

@corona10
Copy link
Member Author

@1st1

Thanks you for reviewing all 79 characters linting issues.
Now there are no longer characters over 79 characters on this patch
including inspect.py, test_inspect.py and news.

I should care about this linting convention from now on.

Thank you for redundunt reviewing for same issues :)

Enjoy your weekend! thank you

Lib/inspect.py Outdated
self._kind = _ParameterKind(kind)
except ValueError:
msg = "invalid value for 'Parameter.kind' attribute"
raise ValueError(msg) from None
Copy link
Member

Choose a reason for hiding this comment

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

last change here:

raise ValueError(f'value {kind!r} is not a valid Parameter.kind')

Lib/inspect.py Outdated
if self._kind != _POSITIONAL_OR_KEYWORD:
msg = (
'implicit arguments must be passed in as '
'{} arguments not {} arguments'
Copy link
Member

Choose a reason for hiding this comment

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

"implicit arguments must be passed as positional or keyword arguments, not {}"

Copy link
Member

@1st1 1st1 left a comment

Choose a reason for hiding this comment

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

Left a couple nitpicks, please fix them. LGTM otherwise.

@corona10 corona10 force-pushed the bpo-33197 branch 2 times, most recently from d6dde9d to a466687 Compare May 27, 2018 23:58
The error message from constructing invalid inspect.
Parameters was confused due to print integer enum value (parameter kind).
It is updated to print a string value of parameter kind.
@corona10
Copy link
Member Author

@1st1 @serhiy-storchaka

Thanks! Updated!

@1st1 1st1 merged commit a9cab43 into python:master May 29, 2018
@miss-islington
Copy link
Contributor

Thanks @corona10 for the PR, and @1st1 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.6, 3.7.
🐍🍒⛏🤖

@1st1
Copy link
Member

1st1 commented May 29, 2018

Thanks, @corona10

@bedevere-bot
Copy link

GH-7204 is a backport of this pull request to the 3.7 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request May 29, 2018
…honGH-6636)

(cherry picked from commit a9cab43)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
miss-islington pushed a commit to miss-islington/cpython that referenced this pull request May 29, 2018
…honGH-6636)

(cherry picked from commit a9cab43)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
@bedevere-bot
Copy link

GH-7205 is a backport of this pull request to the 3.6 branch.

1st1 pushed a commit that referenced this pull request May 29, 2018
…6636) (GH-7204)

(cherry picked from commit a9cab43)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
1st1 pushed a commit that referenced this pull request May 29, 2018
…6636) (#7205)

(cherry picked from commit a9cab43)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
@corona10 corona10 deleted the bpo-33197 branch June 10, 2018 08:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type-bug An unexpected behavior, bug, or error
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants