STINNER Victor added the comment:

FYI I proposed a fix for eventlet to fix eventlet with Python 3 when 
monkey-patching is used:
https://github.com/eventlet/eventlet/pull/187

The change forces the Python implementation of RLock, which is compatible with 
eventlet monkey-patching. The Python implementation of RLock gets the thread 
identifier from the monkey-patched threading module, whereas the C 
implementation calls directly a C function to get the identifier which is 
incompatible with eventlet.

If the Python implementation is simply dropped, eventlet may uses its own 
implementation (copy/paste code from older Python version).

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13697>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to