summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-07-14 05:42:09 (GMT)
committerRaymond Hettinger <python@rcn.com>2013-07-14 05:42:09 (GMT)
commit889b92d3aa88b1d38d1f96907e0c02bea6d81777 (patch)
tree32046963e8426707bcf0715578fc3c28b36119ff /Misc
parente6a17862e7f5739a669a98c2699a595a03fbe364 (diff)
downloadcpython-889b92d3aa88b1d38d1f96907e0c02bea6d81777.zip
cpython-889b92d3aa88b1d38d1f96907e0c02bea6d81777.tar.gz
cpython-889b92d3aa88b1d38d1f96907e0c02bea6d81777.tar.bz2
Issue #18432: Fix unintended API change in the sched module
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4f90cae..4ecef29 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,9 @@ Library
- Issue #18431: The new email header parser now decodes RFC2047 encoded words
in structured headers.
+- Issue #18432: The sched module's queue method was incorrectly returning
+ an iterator instead of a list.
+
- Issue #18044: The new email header parser was mis-parsing encoded words where
an encoded character immediately followed the '?' that follows the CTE
character, resulting in a decoding failure. They are now decoded correctly.