Change by Joseph Sible :
--
nosy: +Joseph Sible
___
Python tracker
<https://bugs.python.org/issue40425>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Joseph Sible :
Currently, the cmdloop function in cmd has a preloop hook, which runs before
the large try block, and a postloop hook, which runs at the end of the body of
the large try block. This isn't sufficient for subclasses to safel
Joseph Sible added the comment:
Re musl changing their behavior, see
https://www.openwall.com/lists/musl/2018/09/07/1 and the resulting thread.
In addition to the old kernel version issue, two other issues were raised:
1. EINTR makes programming mistakes more likely, as people won't thi
Joseph Sible added the comment:
How is this considered "fixed"? Why couldn't this be actually fixed by using
eventfd instead of semaphores when they're available, for example?
--
___
Python tracker
<https://bug
New submission from Joseph Sible :
When Python is built on Alpine Linux or in any other configuration that uses
musl libc, calls to Lock.acquire() can't be interrupted by signals. This bug is
caught by test_lock_acquire_interruption and test_rlock_acquire_interruption in
3.6/Lib