Alexandru Mărășteanu
Alexandru Mărășteanu
Wouldn't you say it would be better to use `Math.abs` to ensure the value is positive, instead of introducing features which are particular to C but strange to JS?
Kind of late, but - the original author's version seems to link to libraries on his own computer. The people at Hailo fixed it at https://github.com/hailocab/wkhtmltopdf-go
One of my team mates suggested this might have to do with https://github.com/nedbat/coveragepy/issues/1665 I did not run coverage locally, I'll try to do it tomorrow to compare.
Cool! Maybe you'll get luckier 👍
Thanks for the response! The workflows in the screenshot differ in the coveragepy version only. Config is: ```toml [tool.coverage.run] branch = true source = ["."] [tool.coverage.report] omit = [ "*/migrations/*",...
We've been using `branch=true` for at least 4 years. On Mar 6, 2024 we upgraded to Python 3.12 and we found tests took ~45 min. Then on Mar 18, 2024...
I ran the workflows with different combinations both on Thursday: And today: (ignore the "failed" workflows - there's a flaky test that's not fixed in main) It looks like on...
The above doesn't work for me (mypy 1.4.1 on Python 3.11.3): ```python from enum import Enum class Num(Enum): WOM = (1, True) TOO = (2, False) TEE = (3, True)...
For the record, see how Django does it: https://github.com/django/django/blob/d506e4a52847ed4fb80754175d76b6b83ff90929/django/contrib/humanize/locale/ro/LC_MESSAGES/django.po#L29-L82