From: Serhiy Storchaka Date: Sat, 17 Dec 2016 20:15:10 +0000 (+0200) Subject: Issue #29000: Fixed bytes formatting of octals with zero padding in alternate X-Git-Tag: v3.7.0a1~1726 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9d16b616d50203543e408b6a1205945df2b2fd46;p=python Issue #29000: Fixed bytes formatting of octals with zero padding in alternate form. --- 9d16b616d50203543e408b6a1205945df2b2fd46 diff --cc Misc/NEWS index b2cbad1289,ed10395f54..718a5d5dad --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,12 -10,9 +10,15 @@@ What's New in Python 3.7.0 alpha Core and Builtins ----------------- + - Issue #29000: Fixed bytes formatting of octals with zero padding in alternate + form. + +- Issue #18896: Python function can now have more than 255 parameters. + collections.namedtuple() now supports tuples with more than 255 elements. + +- Issue #28596: The preferred encoding is UTF-8 on Android. Patch written by + Chi Hsuan Yen. + - Issue #26919: On Android, operating system data is now always encoded/decoded to/from UTF-8, instead of the locale encoding to avoid inconsistencies with os.fsencode() and os.fsdecode() which are already using UTF-8.