summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-11-21 15:39:01 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-11-21 15:39:01 (GMT)
commit065507f03a0b40ecf24da7498fd69b3274e6846a (patch)
tree4022f3f8e02dc571b2fe120e0fda0f551c2e517a /Misc
parentd16a9d484088e3015ce68478ed6392285a0eb75b (diff)
parentb44fb128ae5d9562f00a944e2d22392235073a69 (diff)
downloadcpython-065507f03a0b40ecf24da7498fd69b3274e6846a.zip
cpython-065507f03a0b40ecf24da7498fd69b3274e6846a.tar.gz
cpython-065507f03a0b40ecf24da7498fd69b3274e6846a.tar.bz2
Merge 3.6
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e5752e4..ddaae95 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -133,6 +133,11 @@ Core and Builtins
Library
-------
+- Issue #28727: Regular expression patterns, _sre.SRE_Pattern objects created
+ by re.compile(), become comparable (only x==y and x!=y operators). This
+ change should fix the issue #18383: don't duplicate warning filters when the
+ warnings module is reloaded (thing usually only done in unit tests).
+
- Issue #20572: Remove the subprocess.Popen.wait endtime parameter. It was
deprecated in 3.4 and undocumented prior to that.