summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-01-07 22:55:57 (GMT)
committerGitHub <noreply@github.com>2019-01-07 22:55:57 (GMT)
commitdf8e1fb4e388e18430a9be8c6ceeb03c330f166c (patch)
treec2b694770e287e993702cc69731ae10fcc60f768 /Misc
parent2d53bed79c1953390f85b191c72855e457e09305 (diff)
downloadcpython-df8e1fb4e388e18430a9be8c6ceeb03c330f166c.zip
cpython-df8e1fb4e388e18430a9be8c6ceeb03c330f166c.tar.gz
cpython-df8e1fb4e388e18430a9be8c6ceeb03c330f166c.tar.bz2
bpo-32710: test_asyncio: test_sendfile reset policy (GH-11461)
test_asyncio/test_sendfile.py now resets the event loop policy using tearDownModule() as done in other tests, to prevent a warning when running tests on Windows.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2019-01-07-23-34-41.bpo-32710.Hzo1b8.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2019-01-07-23-34-41.bpo-32710.Hzo1b8.rst b/Misc/NEWS.d/next/Tests/2019-01-07-23-34-41.bpo-32710.Hzo1b8.rst
new file mode 100644
index 0000000..dd602a9
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2019-01-07-23-34-41.bpo-32710.Hzo1b8.rst
@@ -0,0 +1,3 @@
+``test_asyncio/test_sendfile.py`` now resets the event loop policy using
+:func:`tearDownModule` as done in other tests, to prevent a warning when
+running tests on Windows.