[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-08 Thread Yury Selivanov
Change by Yury Selivanov : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-08 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 4f54867e29af93779922ff23df542f2d5df4c4ee by Yury Selivanov (Dong-hee Na) in branch 'master': bpo-33197: Add versionadded tag to the documentation of ParameterKind (GH-7536)

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-08 Thread Yury Selivanov
Yury Selivanov added the comment: > @yselivanov > Please take a look PR 7536 :) Thanks! Please stop posting comments like this frequently. They are highly distractive. -- ___ Python tracker

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-08 Thread Dong-hee Na
Dong-hee Na added the comment: @yselivanov Please take a look PR 7536 :) Thanks! -- ___ Python tracker ___ ___ Python-bugs-list

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-08 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +7173 stage: resolved -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-08 Thread Dong-hee Na
Dong-hee Na added the comment: Sure, I will send a PR soon. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-08 Thread Yury Selivanov
Yury Selivanov added the comment: We forgot to add "versionadded: 3.8" tag to the documentation of ParameterKind.description. Dong-hee Na, could you please make a PR to add it? -- status: closed -> open ___ Python tracker

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-07 Thread Yury Selivanov
Yury Selivanov added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-07 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 4aa3006619392438b0775a2f488bbe9e7a22c468 by Yury Selivanov (Dong-hee Na) in branch 'master': bpo-33197: Add description property for _ParameterKind. (GH-7206) https://github.com/python/cpython/commit/4aa3006619392438b0775a2f488bbe9e7a22c468

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-07 Thread Dong-hee Na
Dong-hee Na added the comment: @yselivanov Please take a look PR 7206 :) -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-05-29 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 5e9e9db9d9b648d2326e2853dc07377e12498e3f by Yury Selivanov (Miss Islington (bot)) in branch '3.6': bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636) (#7205)

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-05-29 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset cb055bcc2bbfa5dcc6b0332305918a2118d9ebbc by Yury Selivanov (Miss Islington (bot)) in branch '3.7': bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636) (GH-7204)

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-05-29 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +6841 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-05-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +6840 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-05-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +6839 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-05-29 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset a9cab433bbf02f3a1de59d14dc8f583181ffe2d5 by Yury Selivanov (Dong-hee Na) in branch 'master': bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636)

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-05-29 Thread Dong-hee Na
Dong-hee Na added the comment: PR 6636 is ready to be merged :) -- nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-05-22 Thread Dong-hee Na
Dong-hee Na added the comment: Can I get a code review for PR 6636? -- ___ Python tracker ___

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-04-29 Thread Antony Lee
Change by Antony Lee : -- nosy: -Antony.Lee ___ Python tracker ___ ___

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-04-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +yselivanov type: -> behavior versions: +Python 3.7, Python 3.8 ___ Python tracker

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-04-29 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +6332 stage: -> patch review ___ Python tracker ___

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-04-29 Thread Dong-hee Na
Dong-hee Na added the comment: @Nitish I will take a look this issue. I agree with to use "{!s}" in the format string -- nosy: +corona10 ___ Python tracker

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-04-01 Thread Nitish
Nitish added the comment: Also, _ParameterKind class has a __str__ method. So, I guess it's better to use "{!s}" in the format string instead of using kind.name. -- ___ Python tracker

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-04-01 Thread Nitish
Nitish added the comment: @Antony Lee since you know the fix, do you want to submit a PR? -- nosy: +nitishch ___ Python tracker

[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-04-01 Thread Antony Lee
New submission from Antony Lee : Python 3.6.4 In [15]: inspect.Parameter("foo", kind=inspect.Parameter.VAR_KEYWORD, default=42) --- ValueErrorTraceback