Kristian Thy

Results 26 comments of Kristian Thy

My example does an explicit definition of `_` but that was just for repro purposes. The real use case is that [the `gettext` module of the stdlib modifies the builtins...

> *Correctly riyyen uniitest test suite can be used OOTB with pytest. > What is the sense to perform assertion out of fixed value?* Ironically, I assume you mean "correctly...

I just tried this: ```python import pathlib import polib pth = pathlib.Path(r"C:\whatever\sample.po") pofile = polib.pofile(pth) for entry in pofile: print(entry.msgid, entry.msgstr) ``` Worked fine in Python 3.9. Is there anything...

You probably don't want to save for each entry. Suggest moving the second line you added out of the `for` loop.

I'm seeing the same error on Alpine 3.11 after installing the 2.31-r0 apk. My `/usr/glibc-compat/lib/` contains `ld-2.31.so` and `ld-linux-x86-64.so.2` which are identical: ```bash alpine311:/usr/glibc-compat/lib$ cmp -l ld-2.31.so ld-linux-x86-64.so.2 alpine311:/usr/glibc-compat/lib$ echo...

glibc is released under the LGPL, which is also what this package says in the `APKBUILD` file.

> this leads me to suspect that more in that long list of things to install could be removed, but i haven't the inclination to go through it. The following...

> The approach used by all these actions is horrible. All are built around pushing a tag to have a build. It kind of defeats a primary goal of continuous...

I may be misunderstanding #86, but doesn't it do exactly the opposite of what I want here?

Huh, just came here to raise the same issue. πŸ™‚ [Origin of yak shaving](http://projects.csail.mit.edu/gsb/old-archive/gsb-archive/gsb2000-02-11.html).