summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_unix_events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-06-22 22:12:14 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-06-22 22:12:14 (GMT)
commit7b7120e159e2cb951b01773a164426c9e0bffa2d (patch)
tree39eaab2c2bdc14b365b734a17baf2ddb1f414627 /Lib/test/test_asyncio/test_unix_events.py
parentd6de5d8455ac0d120d9c49d04f350433a86ec4e6 (diff)
downloadcpython-7b7120e159e2cb951b01773a164426c9e0bffa2d.zip
cpython-7b7120e159e2cb951b01773a164426c9e0bffa2d.tar.gz
cpython-7b7120e159e2cb951b01773a164426c9e0bffa2d.tar.bz2
asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG
environment variable is set
Diffstat (limited to 'Lib/test/test_asyncio/test_unix_events.py')
-rw-r--r--Lib/test/test_asyncio/test_unix_events.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py
index 89a4c10..0ade7f2 100644
--- a/Lib/test/test_asyncio/test_unix_events.py
+++ b/Lib/test/test_asyncio/test_unix_events.py
@@ -445,8 +445,6 @@ class UnixReadPipeTransportTests(test_utils.TestCase):
self.assertEqual(2, sys.getrefcount(self.protocol),
pprint.pformat(gc.get_referrers(self.protocol)))
self.assertIsNone(tr._loop)
- self.assertEqual(5, sys.getrefcount(self.loop),
- pprint.pformat(gc.get_referrers(self.loop)))
def test__call_connection_lost_with_err(self):
tr = unix_events._UnixReadPipeTransport(
@@ -462,8 +460,6 @@ class UnixReadPipeTransportTests(test_utils.TestCase):
self.assertEqual(2, sys.getrefcount(self.protocol),
pprint.pformat(gc.get_referrers(self.protocol)))
self.assertIsNone(tr._loop)
- self.assertEqual(5, sys.getrefcount(self.loop),
- pprint.pformat(gc.get_referrers(self.loop)))
class UnixWritePipeTransportTests(test_utils.TestCase):
@@ -731,8 +727,6 @@ class UnixWritePipeTransportTests(test_utils.TestCase):
self.assertEqual(2, sys.getrefcount(self.protocol),
pprint.pformat(gc.get_referrers(self.protocol)))
self.assertIsNone(tr._loop)
- self.assertEqual(5, sys.getrefcount(self.loop),
- pprint.pformat(gc.get_referrers(self.loop)))
def test__call_connection_lost_with_err(self):
tr = unix_events._UnixWritePipeTransport(
@@ -747,8 +741,6 @@ class UnixWritePipeTransportTests(test_utils.TestCase):
self.assertEqual(2, sys.getrefcount(self.protocol),
pprint.pformat(gc.get_referrers(self.protocol)))
self.assertIsNone(tr._loop)
- self.assertEqual(5, sys.getrefcount(self.loop),
- pprint.pformat(gc.get_referrers(self.loop)))
def test_close(self):
tr = unix_events._UnixWritePipeTransport(