]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #27309: Enables proper Windows styles in python[w].exe manifest.
authorSteve Dower <steve.dower@microsoft.com>
Mon, 18 Jul 2016 04:40:06 +0000 (21:40 -0700)
committerSteve Dower <steve.dower@microsoft.com>
Mon, 18 Jul 2016 04:40:06 +0000 (21:40 -0700)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 94db851d1e5234b38245bf49bbcbba66e728572e,770f159e2ea7dac37ed77e4c2e4c5bd7f6f76dec..902164d561c46f2f289d7846f6e3765228ed94c1
+++ b/Misc/NEWS
@@@ -30,41 -35,6 +30,45 @@@ Librar
  
  - Issue #27522: Avoid an unintentional reference cycle in email.feedparser.
  
 +- Issue 27512: Fix a segfault when os.fspath() called a an __fspath__() method
 +  that raised an exception. Patch by Xiang Zhang.
 +
 +Tests
 +-----
 +
 +- Issue #27369: In test_pyexpat, avoid testing an error message detail that
 +  changed in Expat 2.2.0.
 +
++Windows
++-------
++
++- Issue #27309: Enables proper Windows styles in python[w].exe manifest.
 +
 +What's New in Python 3.6.0 alpha 3
 +==================================
 +
 +*Release date: 2016-07-11*
 +
 +Core and Builtins
 +-----------------
 +
 +- Issue #27473: Fixed possible integer overflow in bytes and bytearray
 +  concatenations.  Patch by Xiang Zhang.
 +
 +- Issue #23034: The output of a special Python build with defined COUNT_ALLOCS,
 +  SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT macros is now off by  default.  It can
 +  be re-enabled using the "-X showalloccount" option.  It now outputs to stderr
 +  instead of stdout.
 +
 +- Issue #27443: __length_hint__() of bytearray iterators no longer return a
 +  negative integer for a resized bytearray.
 +
 +- Issue #27007: The fromhex() class methods of bytes and bytearray subclasses
 +  now return an instance of corresponding subclass.
 +
 +Library
 +-------
 +
  - Issue #26844: Fix error message for imp.find_module() to refer to 'path'
    instead of 'name'. Patch by Lev Maximov.