| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
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
| Back | FazBrowse Home | New Git URL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityThere need to be more tests for cases where we substitute an unpacked tuple into the TypeVarTuple. I found a crash on your branch:
% ./python.exe Python 3.11.0a6+ (heads/serhiy-storchaka-typevartuple-subst-c:a35af462a3, Mar 11 2022, 19:02:45) [Clang 13.0.0 (clang-1300.0.29.3)] on darwin Type "help", "copyright", "credits" or "license" for more information >>> from typing import Unpack, TypeVarTuple >>> Ts = TypeVarTuple("Ts") >>> t = tuple[Ts] >>> t[int, Unpack[tuple[int, str]], str] Assertion failed: (iparam != varparam), function _Py_subs_parameters, file genericaliasobject.c, line 382. zsh: abort ./python.exeSorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityGood catch. Is not tuple[Ts] illegal?
I have added a runtime error for this case. It is consistent for Tuple, tuple and user generics.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.