Irit Katriel

Results 49 issues of Irit Katriel

It would work like this: 1. Streamulus defines placeholder terminals streamulus::_1, etc.. 2. The user defines a streamulus expression over them. 3. Then user subscribes the expression along with actual...

enhancement

Check parameter count and types. Generate a friendly error message if they don't match. (Currently the error message is whatever the compiler spews out when the compilation fails).

enhancement

1. The Stream should have timestamps so that ticks are combined correctly even in situations like x+filter(x). 2. Merging input streams should happen in a separate class so that different...

enhancement

* Issue: gh-95913

docs
awaiting core review
skip news
stdlib
needs backport to 3.11

This reduces the total size of unused consts in the top 100 PyPl packages by about 2%: Before: Total: 75 errors; 9,946 files; 235,684 code objects; 3,669,436 lines; 31,309,347 opcodes;...

awaiting core review
interpreter-core

The compiler currently removes the [trailing unused consts ](https://github.com/python/cpython/blob/main/Python/compile.c#L9736)from code objects. We should remove all unused consts (except the first one, which may be a docstring). * PR: gh-99255

type-feature

With this we can run just codegen from python, and get the un-optimized instruction sequence for an AST. * Issue: gh-87092

tests
awaiting core review
skip news
interpreter-core

``` def f(x): match x: case a,b: return 1 import dis from pprint import pprint as pp def pos(p): return (p.lineno, p.end_lineno, p.col_offset, p.end_col_offset) pp([(pos(x.positions), x.opname, x.argval) for x in...

type-bug
interpreter-core
3.12

This PR removes the recursive updates which made the locations incorrect. They are still too broad in some cases, but we should deal with the separately. (One thing we would...

type-bug
awaiting core review
interpreter-core