diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-10-17 16:11:03 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-10-17 16:11:03 (GMT) |
commit | 1f6b69b74996164be5f13dea34242edc14bd87a1 (patch) | |
tree | b1b50209870de40fc64e71aacc84b8a9785c3266 /Misc | |
parent | 5493e4723a922b9905cf6916363e72109a531cfd (diff) | |
download | cpython-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/NEWS | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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. |