From: Antoine Pitrou Date: Mon, 28 Feb 2011 22:06:48 +0000 (+0000) Subject: Add credit for r88682. X-Git-Tag: v3.3.0a1~3027 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d0f257211186de3475dd996c3a32772d2e34456;p=python Add credit for r88682. --- diff --git a/Misc/ACKS b/Misc/ACKS index 8066ebcc16..f2b15d3f5e 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -326,6 +326,7 @@ Duncan Grisby Fabian Groffen Eric Groo Dag Gruneau +Filip Gruszczyński Michael Guravage Lars Gustäbel Thomas Güttler diff --git a/Misc/NEWS b/Misc/NEWS index a7f162d4be..19400c8fba 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -37,7 +37,8 @@ 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. + The _thread.error exception is now an alias of RuntimeError. Patch by + Filip Gruszczyński. - Issue 8594: ftplib now provides a source_address parameter to specify which (address, port) to bind to before connecting.