summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-17 20:13:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-17 20:13:05 (GMT)
commit025f8953f1eff11d1eb3cb5d2068a31e6f6c7270 (patch)
treee7ff669617e6385c645289853443170d1eb770dc /Misc/NEWS
parent75862c4c66cb23edbaf1b370cb7a355108edfd49 (diff)
parentb1a1619bf042cd9d51d83c5120cec51a6f27e906 (diff)
downloadcpython-025f8953f1eff11d1eb3cb5d2068a31e6f6c7270.zip
cpython-025f8953f1eff11d1eb3cb5d2068a31e6f6c7270.tar.gz
cpython-025f8953f1eff11d1eb3cb5d2068a31e6f6c7270.tar.bz2
Issue #29000: Fixed bytes formatting of octals with zero padding in alternate
form.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 883ca6e..ed10395 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.1 release candidate 1
Core and Builtins
-----------------
+- Issue #29000: Fixed bytes formatting of octals with zero padding in alternate
+ form.
+
- 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.