Dorian Bivolaru

Results 9 comments of Dorian Bivolaru

A disconnection is notified using [identity, b''] (ie one-message-with-identity-and-empty-string) in pyzmq so you actually know who and when it disconnected. I would assume it's similar in the lower level api.

Was searching for encoding related items and found this draft. It seems in `python 3.10` there is a new option to check for ambiguous encodings which I am using for...

I ran into similar issues as @sametmax. The principles I used, in short: - Two types of tasks: dependent and independent; the independent ones (started by an ensure_future wrapper) are...

@Komnomnomnom let me know what you had in mind, maybe I can help with some of the items.

Try this when closing: ``` tws.reqOpenOrders() tws.eDisconnect() ```

Based on what I see on my box, this starts both a shell and the sleep command itself. The CTRL-Z suspends both the bash and the sleep instance but not...

@brammool In his example `kill -9` also doesn't work because sleep is finished already (defunct) but bash stays suspended so process cleanup does not happen. As bash is run in...

Was looking for a similar solution and stumbled upon this question. My solution is as follows. `setup.py`: ``` setup( # other arguments here... entry_points={ 'console_scripts': ['ganarchy=ganarchy.cli:entry_point'] } # yet some...