diff options
author | Roy Williams <roy.williams.iii@gmail.com> | 2017-06-10 05:01:16 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-06-10 05:01:16 (GMT) |
commit | 171b9a354e816eebc6d4c3a8553303942e9c5025 (patch) | |
tree | dd1dcb26b3b064b7c0bd08e79771e6193c9c8759 /Misc/NEWS | |
parent | 7445381c606faf20e253da42656db478a4349f8e (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |