Johan Nordlander
Johan Nordlander
This is to summarize a proposal for resolving the multiple issues we've been discussing regarding the use of `None` to indicate 1. The implicit return of "nothing" from a function...
Add C keyword `volatile` to C variable declarations declared outside an exception handler but referenced inside it. Example: ``` def f(): res = 0 try: res = 1 raise ValueError...
### Acton Version 0.24.1.20250226.13.5.28 ### Steps to Reproduce and Observed Behavior Compiling ``` def fun(x): [a, b] = x.split(":") ``` leads to a crash in the deactorizer pass, apparently because...
### Acton Version 0.24.1.20250205.13.28.10 ### Steps to Reproduce and Observed Behavior Example: ``` class Test(): results: dict[str,str] def __init__(self): self.result = {} ``` This will currently result in a class...
### Acton Version 0.26.0 ### Steps to Reproduce and Observed Behavior The following code is accepted by the compiler ``` def closure(): counter = 0 def inner(): counter += 1...
As it currently stand, it's the _sender_ that's woken up when the timer triggers, just to place a message in the message queue of the receiver. Ideally `after` should result...