diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-05-04 23:31:41 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-05-04 23:31:41 (GMT) |
commit | e95a9ff112159f8cd46d6cdb5f8da19c92469e59 (patch) | |
tree | 3bcd115974bb6977fa24153be48430288ec1c6c2 /Doc/whatsnew | |
parent | 2d9c2d5ecd6d28a8d07fcef3f9e6c68dcb6e4faf (diff) | |
download | cpython-e95a9ff112159f8cd46d6cdb5f8da19c92469e59.zip cpython-e95a9ff112159f8cd46d6cdb5f8da19c92469e59.tar.gz cpython-e95a9ff112159f8cd46d6cdb5f8da19c92469e59.tar.bz2 |
Add what's new entry for r80157 and r80071.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 94d8f7b..877283b 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -123,6 +123,11 @@ Multi-threading (Contributed by Antoine Pitrou; :issue:`3001`.) +* Regular and recursive locks now accept an optional *timeout* argument + to their ``acquire`` method. (Contributed by Antoine Pitrou; :issue:`7316`) + Similarly, :meth:`threading.Semaphore.acquire` also gains a *timeout* + argument. (Contributed by Torsten Landschoff; :issue:`850728`.) + Optimizations ============= |