summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-02-28 22:06:48 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-02-28 22:06:48 (GMT)
commit8d0f257211186de3475dd996c3a32772d2e34456 (patch)
tree7c039bda17a304065f3f49ba4a4c768ae4861981
parentd6d17c58af8002000ecd1326c7accafb5af8a9db (diff)
downloadcpython-8d0f257211186de3475dd996c3a32772d2e34456.zip
cpython-8d0f257211186de3475dd996c3a32772d2e34456.tar.gz
cpython-8d0f257211186de3475dd996c3a32772d2e34456.tar.bz2
Add credit for r88682.
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 3 insertions, 1 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 8066ebc..f2b15d3 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 a7f162d..19400c8 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.