]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #11223: Add threading._info() function providing informations about the
authorVictor Stinner <victor.stinner@haypocalc.com>
Tue, 19 Apr 2011 21:58:51 +0000 (23:58 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Tue, 19 Apr 2011 21:58:51 +0000 (23:58 +0200)
commit754851f456d0b97c86f2d700e032632323840e29
tree366726362ecd8a4849b9fc402eddf6fb2acbf9a5
parentcf2a807831ee93ef39e73fcc682894b0695b6143
Issue #11223: Add threading._info() function providing informations about the
thread implementation.

Skip test_lock_acquire_interruption() and test_rlock_acquire_interruption() of
test_threadsignals if a thread lock is implemented using a POSIX mutex and a
POSIX condition variable. A POSIX condition variable cannot be interrupted by a
signal (e.g. on Linux, the futex system call is restarted).
Doc/library/threading.rst
Doc/whatsnew/3.3.rst
Include/pythread.h
Lib/test/test_os.py
Lib/test/test_threading.py
Lib/test/test_threadsignals.py
Lib/threading.py
Misc/NEWS
Modules/_threadmodule.c
Python/thread.c