summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-11-27 20:13:16 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-11-27 20:13:16 (GMT)
commitfc8e9b0e726c14d10cf33864710364b3cb4ae368 (patch)
tree0bfb71556470c4bdbbc4e40b8b1555c189ab6727 /Misc
parent7a6915e17d1ea9d740c23772160c18fdd5a5395f (diff)
downloadcpython-fc8e9b0e726c14d10cf33864710364b3cb4ae368.zip
cpython-fc8e9b0e726c14d10cf33864710364b3cb4ae368.tar.gz
cpython-fc8e9b0e726c14d10cf33864710364b3cb4ae368.tar.bz2
Issue #22915: SAX parser now supports files opened with file descriptor or
bytes path.
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 c1abebe..7c17a37 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@ Core and Builtins
Library
-------
+- Issue #22915: SAX parser now supports files opened with file descriptor or
+ bytes path.
+
- Issue #22609: Constructors and update methods of mapping classes in the
collections module now accept the self keyword argument.