Irit Katriel
Irit Katriel
When a PR has merge conflicts, the author doesn't know unless they check or another person alerts them. It would be good if the bot could ping them and move...
tests are as standard a requirement as doc changes. New PR authors who are not aware of this could be helped by a check failing due to lack of tests...
We had a PR that was left open for a few months, and once it was merged the tests failed and the build was broken: https://github.com/python/cpython/pull/22033 I think the PR...
Fixes #118692. * Issue: gh-118692 ---- 📚 Documentation preview 📚: https://cpython-previews--119216.org.readthedocs.build/
Fixes #109176. * Issue: gh-109176
The ``_PyFrame_OpAlreadyRan`` function in frameobject.c is not covered by any tests. For details see https://github.com/faster-cpython/ideas/issues/623. ### Linked PRs * gh-119234
There are validations in compile.c that can move to earlier stages (AST validation or symtable construction). And the compiler is modifying the symbol table (setting ``ste_coroutine``), which it really shouldn't...
We now have the ``_Py_SourceLocation`` which captures a 4-int source location range. We can use it in symtable instead of passing 4 ints around everywhere. ### Linked PRs * gh-121353
The exception table format is described in https://github.com/python/cpython/blob/main/InternalDocs/exception_handling.md. ---- 📚 Documentation preview 📚: https://cpython-devguide--1334.org.readthedocs.build/