summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-03-31 03:25:07 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-03-31 03:25:07 (GMT)
commitf8d00855109d98d364882d46b2060a46af6456c3 (patch)
tree36a357b94a9067c5821bfa193f7f6b895723824c /Misc
parent6d4a9cf85f819188ed929302f0034974ebd051ed (diff)
downloadcpython-f8d00855109d98d364882d46b2060a46af6456c3.zip
cpython-f8d00855109d98d364882d46b2060a46af6456c3.tar.gz
cpython-f8d00855109d98d364882d46b2060a46af6456c3.tar.bz2
merge 70783 to py3k
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS2
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 1 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 03ed92d..bd300de 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -257,6 +257,7 @@ Dinu Gherman
Jonathan Giddy
Johannes Gijsbers
Michael Gilfix
+Tim Golden
Chris Gonnerman
David Goodger
Hans de Graaff
@@ -794,4 +795,3 @@ Siebren van der Zee
Uwe Zessin
Tarek ZiadŽ
Peter Åstrand
-Jesse Noller
diff --git a/Misc/NEWS b/Misc/NEWS
index de4245a..894aa71 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,9 @@ Core and Builtins
Library
-------
+- Issue #5261: Patch multiprocessing's semaphore.c to support context
+ manager use: "with multiprocessing.Lock()" works now.
+
- Issue #5236: Change time.strptime() to only take strings. Didn't work with
bytes already but the failure was non-obvious.