This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients cstratak, vstinner, yselivanov
Date 2017-07-26.00:08:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1501027683.09.0.464813780599.issue31034@psf.upfronthosting.co.za>
In-reply-to
Content
Patch to test manually the fix:

diff --git a/Lib/test/test_asyncio/__init__.py b/Lib/test/test_asyncio/__init__.py
index 80a9eea..1418952 100644
--- a/Lib/test/test_asyncio/__init__.py
+++ b/Lib/test/test_asyncio/__init__.py
@@ -1,3 +1,4 @@
+import signal; signal.signal(signal.SIGHUP, signal.SIG_IGN)
 import os
 from test.support import load_package_tests, import_module
History
Date User Action Args
2017-07-26 00:08:03vstinnersetrecipients: + vstinner, yselivanov, cstratak
2017-07-26 00:08:03vstinnersetmessageid: <1501027683.09.0.464813780599.issue31034@psf.upfronthosting.co.za>
2017-07-26 00:08:03vstinnerlinkissue31034 messages
2017-07-26 00:08:02vstinnercreate