Bart van Strien
Bart van Strien
Ah yes, that is worded poorly perhaps, it is meant to say no metamethods are set as a result of class members existing. That is, your library does what it...
By the way, it does explicitly mention the constructor as being allowed.
It's mostly a "least surprise" thing. As mentioned, slither treats `__cmp__` specially, where other libs don't, so if I happen to have a method with that name (of course it...
Well, according to the wording rfc ([2119](https://www.ietf.org/rfc/rfc2119.txt)), "SHOULD NOT" allows for deviations from the spec. But if I understand what you're saying correctly, you think we should make it something...
In the mean time, if you add all architectures to the search path, don't love and lua automatically pick the first one that loads successfully?
LÖVE doesn't actually do any audio capturing at the moment (see issue 1 on our issue tracker).
For now I've monkeypatched it in my own code using the following: ``` local orig_append = luadbus.raw.append_arg function luadbus.raw.append_arg(iter, value, typ, subtyp) if typ == "v" and type(value) == "function"...
Now if only I'd based it on the actual branch, I would've had the fix for that compile error too. I'm marking the PR as draft for now, let me...
I did notice the CI job only builds and tests with openssl 1.1, because it uses ubuntu 20.04.
I looked into this, and apparently OpenSSL 3 ships with its own http client implementation. That gets us one step closer to removing `ConnectionClient`, which would be nice.