bpo-41559: Implement PEP 612 - Add ParamSpec and Concatenate to typing#23702
bpo-41559: Implement PEP 612 - Add ParamSpec and Concatenate to typing#23702gvanrossum merged 27 commits into
Conversation
gvanrossum
left a comment
There was a problem hiding this comment.
I'm sorry, I didn't get to the end of this review (not by far), but I have a few comments. Main thing though is, did you look at all the examples in PEP 612? It seems that for user-defined generic classes that have a ParamSpec parameter, things like X[int, P] are actually valid.
Maybe this indirectly also answers your question: I think that the ParamSpec should be included in __parameters__.
Also, I wonder if we could do less type checking at runtime rather than trying to be strict? I desperately want typing.py to shrink, not grow... :-)
Sorry, something went wrong.
|
Points taken. Sorry D'oh, I just realised I answered my own question since we need |
Sorry, something went wrong.
Co-Authored-By: Guido van Rossum <gvanrossum@users.noreply.github.com>
also reduced runtime checks
|
Let's wait until #23060 has landed and then see what adjustments this might need. |
Sorry, something went wrong.
|
Finally looking at this...
Yeah, ParamSpec is super special, and you can't do anything with it that isn't explicitly mentioned in the PEP. So it's debatable whether So let's not worry about those clearly wrong cases. |
Sorry, something went wrong.
|
Sorry, submitted too soon. (UPDATE: Not, I made a mistake -- or GitHub did. :-) |
Sorry, something went wrong.
gvanrossum
left a comment
There was a problem hiding this comment.
Excellent work! Thanks for your perseverance. My feedback is mostly simple improvements.
Sorry, something went wrong.
Co-Authored-By: Guido van Rossum <gvanrossum@users.noreply.github.com>
gvanrossum
left a comment
There was a problem hiding this comment.
Re: the 3.9 issues that you discovered: maybe create a PR for those first, land that in master and 3.9 branch, then merge master into this PR?
Sorry, something went wrong.
|
Guido, thank you so much for all the time you've put into reviewing this PR! I learnt quite a bit about the typing module in the process :).
Yeah I agree, I created #23915 for that. Once that one lands, I'll merge the changes in along with some of your suggestions. |
Sorry, something went wrong.
|
I think it’s ready! |
Sorry, something went wrong.
Yes! Sorry, I thought you were going to merge it in so I was waiting too 😆 . |
Sorry, something went wrong.
|
I figured that was the case. :-) |
Sorry, something went wrong.
|
@gvanrossum: Please replace |
Sorry, something went wrong.
|
@gvanrossum Oh dang I knew I had a hunch I missed something :/. I forgot to convert all lists to tuples in ga_new/setup_ga too (I did it only for getitem and co.). Well on the bright side, having that as a separate PR makes backporting to 3.9 easier if anything :), and anyways lists aren't valid in genericalias other than the Callable case (which we already have covered), so we won't have anything broken even without that in right now. |
Sorry, something went wrong.
|
I'll fix that some other time, right now I'm celebrating 🥳 |
Sorry, something went wrong.
Changes:
__parameters__) in:Documentation will be another patch.
https://bugs.python.org/issue41559