diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-18 13:56:16 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-18 13:56:16 +0300 |
commit | f95de0e8cc259b1ccb6b604a0ed74bb7894f4b2b (patch) | |
tree | 24ae043565544e6b02d39b127439b987b144d0d8 /Misc/NEWS | |
parent | 2fec611a70ba862a4127b7656a6d98d48850c3af (diff) | |
parent | 9305d83425e2ec63b2769336907dd07b3151cd5f (diff) | |
download | cpython-git-f95de0e8cc259b1ccb6b604a0ed74bb7894f4b2b.tar.gz |
Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as
an iterable of integers. Now only strings and byte-like objects are accepted.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.6.0 alpha 3 Library ------- +- Issue #26754: Some functions (compile() etc) accepted a filename argument + encoded as an iterable of integers. Now only strings and byte-like objects + are accepted. + - Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by Daniel Stokes. @@ -52,6 +56,12 @@ IDLE - Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import. +C API +----- + +- Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as + an iterable of integers. Now only strings and byte-like objects are accepted. + Build ----- |