summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-06-23 13:11:12 (GMT)
committerGitHub <noreply@github.com>2017-06-23 13:11:12 (GMT)
commitf87b85f80853c580b1c8bf78a51b0e9a25f6e1a7 (patch)
tree8417421b14db403e4df4b264c4e4ec09e7c1f4b9 /Misc/NEWS
parenta4b091e135ccf345cfafdd8477aef897c5214f82 (diff)
downloadcpython-f87b85f80853c580b1c8bf78a51b0e9a25f6e1a7.zip
cpython-f87b85f80853c580b1c8bf78a51b0e9a25f6e1a7.tar.gz
cpython-f87b85f80853c580b1c8bf78a51b0e9a25f6e1a7.tar.bz2
bpo-21071: struct.Struct.format type is now str (#845)
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 4b6b8fc..33a1593 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -374,6 +374,9 @@ Extension Modules
Library
-------
+- bpo-21071: struct.Struct.format type is now :class:`str` instead of
+ :class:`bytes`.
+
- bpo-29212: Fix concurrent.futures.thread.ThreadPoolExecutor threads to have
a non repr() based thread name by default when no thread_name_prefix is
supplied. They will now identify themselves as "ThreadPoolExecutor-y_n".