Raymond Hettinger added the comment:

Just for the record, Guido explained his aversion to RLocks.  Roughly: 1) 
RLocks are slower and more complex 2) It is difficult to correctly write code 
that can survive reentrancy, so it is easy fool yourself into believing you've 
written correct code  3) Getting a deadlock with a regular lock is a better 
outcome than having the invariants subtly violated, 4) Deadlocks have a more 
clear-cut failure mode and are easier to debug.

Guido also explained that he favored some sort of minimal queue class even if 
it might not handle all possible gc/weakref/signal/__del__ induced issues.  
Essentially, he believes there is some value in harm reduction by minimizing 
the likelihood of a failure.  The will help sysadmins who already have a 
practice of doing monitoring and occasional restarts as a way of mitigating 
transient issues.

----------

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

Reply via email to