summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-03-01 23:05:42 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-03-01 23:05:42 (GMT)
commit819c40ff35aeead0f78c71e18efdc634ffb7b187 (patch)
tree5536386865d20e18a25c768d86f34d5275dd7c3c /Misc/NEWS
parent2512a8b62e32d0b7c51b484a32bb770bd4c2a903 (diff)
downloadcpython-819c40ff35aeead0f78c71e18efdc634ffb7b187.zip
cpython-819c40ff35aeead0f78c71e18efdc634ffb7b187.tar.gz
cpython-819c40ff35aeead0f78c71e18efdc634ffb7b187.tar.bz2
Followup to issue #11140 and r88682: also patch _dummy_thread.
Patch by Aymeric Augustin.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0f73b31..0e83bbf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,7 +44,7 @@ Library
- Issue #11140: Lock.release() now raises a RuntimeError when attempting
to release an unacquired lock, as claimed in the threading documentation.
The _thread.error exception is now an alias of RuntimeError. Patch by
- Filip GruszczyƄski.
+ Filip GruszczyƄski. Patch for _dummy_thread by Aymeric Augustin.
- Issue 8594: ftplib now provides a source_address parameter to specify which
(address, port) to bind to before connecting.