Issue 10110: Let Queue.put recognize a full queue when the maxsize parameter has been reduced.

This commit is contained in:
Raymond Hettinger 2010-10-31 17:57:52 +00:00
parent d285bdb443
commit 189316a2e3
3 changed files with 20 additions and 5 deletions

View file

@ -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.