Herwin
Herwin
The code that sets the python path basicly looks like this: ``` c path = talloc_strdup(NULL, inst->python_path); PySys_SetPath(path); talloc_free(path); ``` There is no reference to the actual interpreter that should...
> Yeah I remember it being global. Maybe just complain that it's already set? That can still cause some unexpected behaviour. Imagine this config ``` python python_stable { module =...
> Refuse to start if it's not set to the same value across all instances. I'm afraid that's the only working option left. Then again, I would probably start cursing...
In reply to @erindru > So right now, theres no way of instantiating multiple python modules in v3? That's not what this case is about. It's perfectly possible possible to...
Excerpt from eap: ``` tls-config tls-common { private_key_password = whatever ... } ttls { tls = tls-common ... } ``` Excerpt from rest ``` tls { ca_file = ${certdir}/cacert.pem ......
IIRC I wrote that part of the code, or rather copied it from `rlm_perl`. I wouldn't be surprised if `rlm_perl` has the same issue. And `rlm_mruby`
Just to add more confusion: https://github.com/washu/xmlrpc-streaming/blob/master/lib/xmlrpc-streaming.rb has an explicit mention of a license: > Released under the same terms of license as Ruby.
https://iliabylich.github.io/2016/01/25/ruby-marshalling-from-a-to-z.html#integer Some information on the Marshal format. Too bad none of the write ups I could find mentioned larger integers.
https://rubyreferences.github.io/rubyref/builtin/marshal.html#bignum
This is a second attempt at #1131, because I've had commit permissions for 1 day and I already screwed things up by merging the wrong branch