On 2024-03-23 3:25 PM, Frank Millman via Python-list wrote:
It is not pretty! call_soon_threadsafe() is a loop function, but the
loop is not accessible from a different thread. Therefore I include a
reference to the loop in the message passed to in_queue, which in turn
passes it to out_queue
> On 22 Mar 2024, at 20:28, Mats Wichmann via Python-list
> wrote:
>
> pip is still a separate package in the .rpm world. which makes sense on a
> couple of levels:
Yes it’s a separate package, but it’s always installed. At least on Fedora.
I agree it makes sense to package it separately, wh
writes:
> Loris wrote:
>
> "Yes, I was mistakenly thinking that the popping the element would leave
> me with the dict minus the popped key-value pair. Seem like there is no
> such function."
>
> Others have tried to explain and pointed out you can del and then use the
> changed dict.
>
> But co