Akuli

Results 347 comments of Akuli
trafficstars

I also noticed that the dialog is resizable. It looks really dumb in full-screen, for example.

Thanks! I'll silence the Alt+F4 and venv tests next. I still don't know what's going on in the rstrip test. What happens if you copy the `intense_super_update()` function from test_jump_to_definition_plugin.py...

When you create a venv, Python creates a bunch of `.exe` files inside `env\Scripts\`. When you activate a venv, this folder is added to your PATH so that when you...

could also recommend `python3 -m` if not using a virtualenv, also `--user`

One approach could be to tell `man` to output english (setting env var `LANG=C` works, but maybe some other env var might be the preferred way). Then the output of...

Can you please make this available under an `--experimental-foo` flag? The current behaviour sucks, to be honest. ```python newline_bytes = self.settings.get("line_ending", settings.LineEnding).value.encode( "ascii" ) ```

You missed one file, `basics/modules.md`: ``` basics/modules.md:The `%.2f` rounds to 2 decimals, and you can find more formatting basics/modules.md: print("Correct! That took %.2f seconds." % difference) basics/modules.md:print("You are currently in...

We could use `str | Any`: - If you expect it to be a string, it will work without casting. - If you expect it to be a list, this...

> only these methods are used Not necessarily true: ``` copier = getattr(x, "__deepcopy__", None) if copier is not None: y = copier(memo) ``` An advantage of `dict` is that...

To me, it seems to always be a socket, so `_RequestType` isn't great either as that would mean it's sometimes `tuple[bytes, socket]`.