diff options
| author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2022-02-10 13:27:15 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-10 13:27:15 (GMT) |
| commit | 9f5145403b40b19e5c00ba43eaa35d5ea2b7b545 (patch) | |
| tree | bd3aef7536cb4d9c904a36e8f77f3ad706bc337d /Lib/test/test_asyncio/test_transports.py | |
| parent | 9b23f8f78fdb0d7eba016616ae7a97abbfc65aa6 (diff) | |
| download | cpython-9f5145403b40b19e5c00ba43eaa35d5ea2b7b545.zip cpython-9f5145403b40b19e5c00ba43eaa35d5ea2b7b545.tar.gz cpython-9f5145403b40b19e5c00ba43eaa35d5ea2b7b545.tar.bz2 | |
[3.10] Fix warning: asyncio.events._event_loop_policy was modified by test_asyncio (GH-31253) (GH-31255)
(cherry picked from commit 012e77eb5c3ba3d411f5967a7f368ebdb42ab88c)
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Diffstat (limited to 'Lib/test/test_asyncio/test_transports.py')
| -rw-r--r-- | Lib/test/test_asyncio/test_transports.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_transports.py b/Lib/test/test_asyncio/test_transports.py index df44855..bbdb218 100644 --- a/Lib/test/test_asyncio/test_transports.py +++ b/Lib/test/test_asyncio/test_transports.py @@ -7,6 +7,12 @@ import asyncio from asyncio import transports +def tearDownModule(): + # not needed for the test file but added for uniformness with all other + # asyncio test files for the sake of unified cleanup + asyncio.set_event_loop_policy(None) + + class TransportTests(unittest.TestCase): def test_ctor_extra_is_none(self): |
