diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-03-27 15:20:08 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-03-27 15:20:08 +0100 |
commit | 79fd962652a60f04ecc7becb116c330063b1706e (patch) | |
tree | e5caad3b0248b10d4f1f7be634027f2ff778d247 /Lib/test | |
parent | 0b4e355b8e7729d1e3a67da8539b3701f4e546ff (diff) | |
download | cpython-git-79fd962652a60f04ecc7becb116c330063b1706e.tar.gz |
asyncio: Fix _SelectorTransport.__repr__() if the event loop is closed
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_asyncio/test_selector_events.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_selector_events.py b/Lib/test/test_asyncio/test_selector_events.py index f64e40dafc..9478b95483 100644 --- a/Lib/test/test_asyncio/test_selector_events.py +++ b/Lib/test/test_asyncio/test_selector_events.py @@ -62,6 +62,11 @@ class BaseSelectorEventLoopTests(test_utils.TestCase): self.loop.add_reader._is_coroutine = False transport = self.loop._make_socket_transport(m, asyncio.Protocol()) self.assertIsInstance(transport, _SelectorSocketTransport) + + # Calling repr() must not fail when the event loop is closed + self.loop.close() + repr(transport) + close_transport(transport) @unittest.skipIf(ssl is None, 'No ssl module') |