Marius Gedminas

Results 312 comments of Marius Gedminas

FWIW this is why I started adding ``` [buildout] allow-hosts = *.python.org ``` to my buildouts, so timeouts from unrelated 3rd-party servers wouldn't break my builds. The PyPI CDN is...

> I've planned to create a PR with a failing test case I now have a [failing unit test in a branch](https://github.com/celery/celery/compare/main...mgedmin:celery:failing-test-for-issue-9119), but some time has passed and I'm uncertain...

An option for this makes sense. I would add a check in [`convert_irc_log()`](https://github.com/mgedmin/irclog2html/blob/f6a8833a37b51015ab88c2f102c5a1189c976647/src/irclog2html/irclog2html.py#L959-L976), to do something like ```python if hide_joins_parts and what in (LogParser.JOIN, LogParser.PART): continue ``` before calling `formatter.servermsg()`....

> Actually, the CLI tool you're using is brand new and doesn't yet have an argument for this It's a great tool! I'm not sure I would've tried to automate...

Unfortunately I realized that I can do ```console $ mv ~/.config/chromium ~/.config/chromium.before-snap $ ln -sr ~/snap/chromium/common/chromium ~/.config/chromium ``` and now `pycookiecheat -u URL -b chromium` works out of the box...

A comment: `src/*.png` _should_ be included in MANIFEST.in, otherwise when unpack the source distribution and run setup.py install, there will not be any icon files to install! (Assuming the unlikely...

This was added in [tox 4.25.0](https://tox.wiki/en/latest/changelog.html#v4-25-0-2025-03-27).

@gahr that doesn't work, unfortunately. The issue here is, AFAIU, my attempt to use `` as literal characters inside the if_true part of the conditional.

Do you still need my verification after https://github.com/neomutt/neomutt/issues/4286#issuecomment-2451583923? I thought that was the same issue? (I've already changed my format strings to use `« 3»` for thread counts, messing up...

Question: does having Python 3.7 support cause you any actual issues? (If this is just a general maintenance task because you're bored and looking for things to do, that's also...