Miguel Grinberg
Miguel Grinberg
When using `debug=True` there could be an incompatiblity between Flask and gevent, really not much that can be done about that. With `debug=False` I believe everything works well correct? You...
You haven't described what the problem is, you just said there is a problem. Without details I have no way to provide advice. Does my application in this repo suffer...
This could be a floating point precision issue. I would suggest that if you need high accuracy at the microsecond level you use an integer not a `datetime`, which would...
This is not a top priority for me at this time, but I would be open to add this if someone contributes it. But, I do not quite follow some...
@bl4ckwind Are you 100% sure your the test that you claim works is equivalent to what is done inside the Socket.IO server? The code that you shared at the bottom...
@bl4ckwind I still fail to see how the disconnect event is related to this. This is basically a timeout error generated by your `h2.net` Redis node, right? Or am I...
This fix should go to eventlet in the same way gevent was fixed. This package does not need to be concerned with the networking idiosyncrasies of all the different platforms.
> This way you could argue that it's a bug in Python and should be fixed in CPython... If the Solaris port of CPython does not implement the correct behavior...
I'm not sure I understand how this package can help. Also I don't see why the loop needs to be re-entrant, given that it is possible and legal to start...
> But I'm probably missing something. Yes, I think what you are missing is that in spite of the greenlet stuff happening in the background, the asyncio loop runs without...