@@ -580,7 +580,7 @@ def client(path):
580
580
581
581
@unittest .skipIf (sys .platform == 'win32' , "Don't have pipes" )
582
582
def test_read_all_from_pipe_reader (self ):
583
- # See Tulip issue 168. This test is derived from the example
583
+ # See asyncio issue 168. This test is derived from the example
584
584
# subprocess_attach_read_pipe.py, but we configure the
585
585
# StreamReader's limit so that twice it is less than the size
586
586
# of the data writter. Also we must explicitly attach a child
@@ -621,7 +621,7 @@ def test_streamreader_constructor(self):
621
621
self .addCleanup (asyncio .set_event_loop , None )
622
622
asyncio .set_event_loop (self .loop )
623
623
624
- # Tulip issue #184: Ensure that StreamReaderProtocol constructor
624
+ # asyncio issue #184: Ensure that StreamReaderProtocol constructor
625
625
# retrieves the current loop if the loop parameter is not set
626
626
reader = asyncio .StreamReader ()
627
627
self .assertIs (reader ._loop , self .loop )
@@ -630,7 +630,7 @@ def test_streamreaderprotocol_constructor(self):
630
630
self .addCleanup (asyncio .set_event_loop , None )
631
631
asyncio .set_event_loop (self .loop )
632
632
633
- # Tulip issue #184: Ensure that StreamReaderProtocol constructor
633
+ # asyncio issue #184: Ensure that StreamReaderProtocol constructor
634
634
# retrieves the current loop if the loop parameter is not set
635
635
reader = mock .Mock ()
636
636
protocol = asyncio .StreamReaderProtocol (reader )
0 commit comments