LeeeeT

Results 10 comments of LeeeeT

I think I could do a full translation of all the pages as well as fix a few formatting issues if you would ever consider adding an emoji version of...

Cool! 🥳 I'm going to finish up translating the remaining pages and prepare this for merging as promised. 😄

Well, @FeeeeK, you can submit a pull request with your proposed changes to my fork 😋

Yea, it required some reverse engineering and use of private API in order to automate translating with Yandex. 😅 And my script for extracting readable and translatable text from `md`...

@charliermarsh, I'm still getting an error when trying to annotate `*args` as a type variable tuple: ```python def f(*args: *tuple[int]) -> None: ... ``` ``` error: Failed to parse file.py:...

Moreover, Ruff seems not to support [exception groups](https://peps.python.org/pep-0654). ```python print(ExceptionGroup) ``` ``` file.py:1:7: F821 Undefined name `ExceptionGroup` ``` Should I create a separate issue for this?

I've found a similar code sample that causes pyright to enter an infinite loop, but it doesn't run out of memory. I suppose the nature of the bugs for all...