Martin

Results 412 comments of Martin

As for stdout, it seems to be caused by not checking whether stdout exists before trying to use it. https://pyinstaller.org/en/stable/common-issues-and-pitfalls.html#sys-stdin-sys-stdout-and-sys-stderr-in-noconsole-windowed-applications-windows-only

The docs suggest to check if stderr and stdout are available, not to do a platform check: ```python if sys.stdout is None: ... if sys.stderr is None: ... ``` Though...

The one I linked in the comment you replied to - https://github.com/staticshock/colored-traceback.py/issues/25#issuecomment-2571591298 ![image](https://github.com/user-attachments/assets/053c2fbb-0aa7-4167-a8ad-b98f8d606ee5)

I'd also like ISO 8601 to be the default, no matter the locale. While in some cases one could guess the format from the available data - ![image](https://user-images.githubusercontent.com/1641362/67789860-f4b28000-fa74-11e9-9ab3-b042949ebea9.png) In others...

> You failed to mention a critical piece of information: what is the current directory in which you did run the linter. Home of my user. Now that you mention...

> I am afraid that we will not want to ignore a permission denied error, so a fix would only remove the stack trace without allowing the linter to run....

This has worked just fine, but it is not obvious: ``` pygobject-stubs --config-settings=config=Gtk3 ```

https://docs.brew.sh/Adding-Software-to-Homebrew Looks like anyone can submit a new package to brew, so it'd be neat if someone from the community knocked that one out. One can take inspiration from the...

565.77, RTX 4090, Arch Linux, 6.12.3. 2x DP monitors + 1x HDMI TV, which annoyingly forces screen reconnects couple times a day, so that may or may not be relevant....

I attempted to add support for this in https://github.com/Taiko2k/Tauon/pull/1837, could someone verify it works as intended?