jn
jn
Took a cursory look as well. Relevant lines: _thread.Lock._at_fork_reinit() implementation: https://github.com/python/cpython/blob/3.9/Modules/_threadmodule.c#L210 should be fine to call `self.__init__(1)`? Seems to be working here. Note threading.Semaphore doesn't have an _at_fork_reinit method
Here's the resulting build dir for v0.15.5 compiled on an rpi4 running rpios bullseye aarch64: https://drive.google.com/file/d/1MUfrGN9U5Xx9nLgj1YszNNvxwPPCQ9fk/view?usp=sharing Haven't tested it yet.
As a workaround, I'm shoehorning GPIO47 into PLUS_J8 before having a pin factory set: ``` gpiozero.pins.data.PLUS_J8[2][47] = gpiozero.pins.data.PI1_GPIO47 led = gpiozero.LED(47, active_high=False) ``` or 29 for the zero2w https://forums.raspberrypi.com/viewtopic.php?t=324132
@jakeman2048 aren't you then missing `M2LN = ((M2MX - M2MN) + One)` Also, after removing the stray Arg0, I still can't compile: PS D:\Work> D:\Programs\iasl.exe -ve .\DSDT.dsl Intel ACPI Component...
FWIW, it was working up until a few days ago. Looks like crios chromecast is broken through and through currently.
Widevine should have no effect on delivery of chunks, only their decryption.
Just came across this myself. I'm curious if altering the etag in flask-compress is even necessary, since it's adding `accept-encoding` to the `vary` header. Shouldn't this be enough to prevent...
@alexprengere I've done a little more research on this. I've seen etags with the encoding appended, like flask-compress is currently doing. As well, it's common to just weaken the etag...
Apologies for the late response. Since I'm not using `If-Range` or `If-Match` conditional requests, my prior solution has been working fine for me. It works because `If-None-Match` only performs a...