[issue44775] Speed-up typing.cast by implementing it in C

2021-07-30 Thread Yurii Karabas
Change by Yurii Karabas <1998uri...@gmail.com>: -- keywords: +patch pull_requests: +25993 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27474 ___ Python tracker

[issue44775] Speed-up typing.cast by implementing it in C

2021-07-30 Thread Yurii Karabas
New submission from Yurii Karabas <1998uri...@gmail.com>: In scope of https://github.com/python/cpython/pull/27262 we have introduce `_typing` module with typing related helper functions. It will be great to speedup `typing.cast` function by implementing it in C. I have already done it and he