summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-10-31 17:57:52 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-10-31 17:57:52 (GMT)
commit189316a2e35eede0de61c4713777c2b8e04c2e99 (patch)
tree70f0c6ffa126bfd9902d6c7880490bbea7229c78 /Misc/NEWS
parentd285bdb4434a57126f7f17dc6b8f78204c180c1f (diff)
downloadcpython-189316a2e35eede0de61c4713777c2b8e04c2e99.zip
cpython-189316a2e35eede0de61c4713777c2b8e04c2e99.tar.gz
cpython-189316a2e35eede0de61c4713777c2b8e04c2e99.tar.bz2
Issue 10110: Let Queue.put recognize a full queue when the maxsize parameter has been reduced.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5c0acfb..abb3ebc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -62,6 +62,9 @@ Library
- Issue #10266: uu.decode didn't close in_file explicitly when it was given
as a filename. Patch by Brian Brazil.
+- Issue #10110: Queue objects didn't recognize full queues when the
+ maxsize parameter had been reduced.
+
- Issue #10160: Speed up operator.attrgetter. Patch by Christos Georgiou.
- logging: Added style option to basicConfig() to allow %, {} or $-formatting.