cpython: b8233c779ff7 (original) (raw)

Mercurial > cpython

changeset 104944:b8233c779ff7

Closes #27781: Removes special cases for the experimental aspect of PEP 529 [#27781]

Steve Dower steve.dower@microsoft.com
date Sun, 06 Nov 2016 19:35:24 -0800
parents e60c1aef639a(current diff)b26c8104e54f(diff)
children 62b7614970bd
files Doc/whatsnew/3.6.rst Misc/NEWS Objects/unicodeobject.c
diffstat 4 files changed, 5 insertions(+), 24 deletions(-)[+] [-] Doc/whatsnew/3.6.rst 5 Lib/test/test_os.py 9 Misc/NEWS 4 Objects/unicodeobject.c 11

line wrap: on

line diff

--- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -356,11 +356,6 @@ correctly encoded. To revert to the prev See :pep:529 for more information and discussion of code modifications that may be required. -.. note:: -

.. _whatsnew-pep487: PEP 487: Simpler customization of class creation

--- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -2860,13 +2860,8 @@ class OSErrorTests(unittest.TestCase): func(name, *func_args) except OSError as err: self.assertIs(err.filename, name, str(func))

-

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -3278,7 +3278,7 @@ Library

--- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -3832,18 +3832,9 @@ PyUnicode_DecodeFSDefaultAndSize(const c cannot only rely on it: check also interp->fscodec_initialized for subinterpreters. */ if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) {

-#ifdef MS_WINDOWS

-#endif