Kristian Larsson

Results 275 comments of Kristian Larsson

Here's one suggestion for how to solve this. We would allow forward references from the calling location to the definition of the called function. The only thing that's weird is...

It happens on Linux too. I am going to guess and say this is somewhere in libuv / our process module where we don't properly clean up after ourselves. The...

@nordlander @sydow do we need to test the different types of things in dicts, like is it meaningful to test dict[str, str] and repeat same test for a dict[str, int]...

Also, how do I compare two dicts? ``` a = {"a": 1} b = {"a": 1} if a != b: print("a != b") await async env.exit(1) ``` this checks if...

Similar to #1132, should we add the missing methods? @nordlander @sydow - pop - clear - copy

I'm actually quite okay with our dicts overall. I started reviewing lists where I felt the lack of index and pop was painful. I just continued with dicts for completeness....

@sydow we already support .copy() on lists. We could instead tell users to do `b = list(a)` to get a (deep?) copy of the list, right? and then we could...

@nordlander and I have discussed deep vs shallow copy in another meeting. Just want to jot down the outcome of that... AFAIR we like the ideas of Rossum that we...

What's the status of this? Looks idle in the last 9 months yet is ready? Review next? I'd love to have this. I'm looking at rebuilding fs-interaction in the Acton...

As part of the bootstrap config applied by the launch.py script, the device is set to model-driven CLI. There is no command line argument exposed to control this but you...