summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-10-17 16:11:03 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-10-17 16:11:03 (GMT)
commit1f6b69b74996164be5f13dea34242edc14bd87a1 (patch)
treeb1b50209870de40fc64e71aacc84b8a9785c3266 /Misc
parent5493e4723a922b9905cf6916363e72109a531cfd (diff)
downloadcpython-1f6b69b74996164be5f13dea34242edc14bd87a1.zip
cpython-1f6b69b74996164be5f13dea34242edc14bd87a1.tar.gz
cpython-1f6b69b74996164be5f13dea34242edc14bd87a1.tar.bz2
Issue #28409: regrtest: fix the parser of command line arguments.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 4 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fd2030a..82cf8b0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -376,11 +376,11 @@ Library
- Issue #27759: Fix selectors incorrectly retain invalid file descriptors.
Patch by Mark Williams.
-- Issue #28368: Refuse monitoring processes if the child watcher has
+- Issue #28368: Refuse monitoring processes if the child watcher has
no loop attached.
Patch by Vincent Michel.
-- Issue #28369: Raise RuntimeError when transport's FD is used with
+- Issue #28369: Raise RuntimeError when transport's FD is used with
add_reader, add_writer, etc.
- Issue #28370: Speedup asyncio.StreamReader.readexactly.
@@ -432,6 +432,8 @@ C API
Tests
-----
+- Issue #28409: regrtest: fix the parser of command line arguments.
+
- Issue #27787: Call gc.collect() before checking each test for "dangling
threads", since the dangling threads are weak references.