fanninpm

Results 128 comments of fanninpm

You might want to consider removing the LALRPOP-related steps from `.github/workflows/ci.yaml`.

I have a few guesses for where some of the parser failures could be: - `Lib/test/test_fstring.py`: - `test_no_escapes_for_braces()` — we're probably (erroneously) converting certain escape sequences before we parse the...

It might be a good idea to update `test_named_expressions.py` to the version found in CPython 3.11. I believe the changes you made are tested by `test_named_expression_assignment_17()` and `test_named_expression_invalid_rebinding_set_comprehension_iteration_variable()`. I will...

#4376 has been merged, so feel free to rebase your branch onto a fresh copy of `main`.

I believe you can use the following command to test your changes locally: ```bash # this runs all of the tests (not necessary if you know which test is affected)...

> Surprised nothing tested for this It might be a good idea to update `test_binascii.py`.

I'm sorry if I wasn't clear. I meant "update `Lib/test/test_binascii.py` to CPython 3.11". That version has the test case that covers what you're adding here (specifically, `test_base64_strict_mode()`).

Out of curiosity, what part of `test_base64_strict_mode()` is causing it to fail?

Rust 1.66 was released yesterday, which might explain a few of the CI failures here.