Results 28 comments of [pʲɵs]
trafficstars

In the function call context, it won't. The empty operator has a right binding strength of 190, which was also the original right binding strength of `:`, so there was...

I don't know if it's possible to make `case x of` work with the current parser. (It's really bad, isn't it? Not like you'd expect much from a glorified infix-to-prefix...

One more thing: it's not necessary to wrap `(< 0)` in parentheses when it's an LHS of `=>`. `=>` has a really low precedence. Not as low as `\n`, but...

Interesting idea, although a little hard to implement because failed assignments throw rather generic ValueErrors and TypeErrors -- simply making `(a = b) => c` equivalent to ``` dg (except...

Not sure hiding _all_ exceptions in conditions is a good idea. A condition is an arbitrary expression, possibly with side effects, etc. Most likely cause of an exception is not...

Ah. Damn. No, it does not. Gonna have to fix that, I guess...

The first test isn't actually valid -- you have a call to `yield` followed by an indented block, so the statement is equivalent to `yield (x, y) (yield from $...

This problem with this is that a tuple can be a valid argument to `__getitem__` in some cases; the most prominent example of that are numpy arrays. (`xs !! (1,...

On second thought, aliasing `_` to `None` doesn't really work either. First, it would require reimplementing `sys.displayhook`, which for some reason is also responsible for updating `_` with the result...

I don't have 3.9, but seems to install fine on 3.10 for me (though fails with a couple TypeErrors due to `loop` parameters no longer existing in `asyncio.Event` and `asyncio.Channel`)....