summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRoy Williams <roy.williams.iii@gmail.com>2017-06-10 05:01:16 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-06-10 05:01:16 (GMT)
commit171b9a354e816eebc6d4c3a8553303942e9c5025 (patch)
treedd1dcb26b3b064b7c0bd08e79771e6193c9c8759 /Misc/NEWS
parent7445381c606faf20e253da42656db478a4349f8e (diff)
downloadcpython-171b9a354e816eebc6d4c3a8553303942e9c5025.zip
cpython-171b9a354e816eebc6d4c3a8553303942e9c5025.tar.gz
cpython-171b9a354e816eebc6d4c3a8553303942e9c5025.tar.bz2
bpo-30605: Fix compiling binary regexs with BytesWarnings enabled. (#2016)
Running our unit tests with `-bb` enabled triggered this failure.
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 36ce9ce..6f56fe0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -350,6 +350,9 @@ Extension Modules
Library
-------
+- bpo-30605: re.compile() no longer raises a BytesWarning when compiling a
+ bytes instance with misplaced inline modifier. Patch by Roy Williams.
+
- bpo-29870: Fix ssl sockets leaks when connection is aborted in asyncio/ssl
implementation. Patch by Michaël Sghaïer.