Results 5 comments of __nick__

If it helps, I solved with a small workaround: ``` def close_con(client): if client.is_connected: return loop = asyncio.get_running_loop() logger.info('STOPPING EVENT LOOP') loop.stop() pending = asyncio.Task.all_tasks() # Run loop until tasks...

+1 I'm facing the same issue. Broker mosquitto 2.x - python 3.8 or 3.9 both failing, It seems that on version 2 the server keepalive is sent and for previous...

Is there a workaround for this? I'm having a hard time to build a PyInt/PyLong object from rust numeric types.

@birkenfeld Thanks. I solved with rust native `usize` and converting to float. I was working on a rust implementation of python's `dictor` lib: https://github.com/nicoCalvo/dicto_r/blob/v1.0/src/lib.rs#L265 Any comments/suggestions are very welcomed as...