@@ -580,7 +580,7 @@ def client(path):
580580
581581 @unittest .skipIf (sys .platform == 'win32' , "Don't have pipes" )
582582 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
584584 # subprocess_attach_read_pipe.py, but we configure the
585585 # StreamReader's limit so that twice it is less than the size
586586 # of the data writter. Also we must explicitly attach a child
@@ -621,7 +621,7 @@ def test_streamreader_constructor(self):
621621 self .addCleanup (asyncio .set_event_loop , None )
622622 asyncio .set_event_loop (self .loop )
623623
624- # Tulip issue #184: Ensure that StreamReaderProtocol constructor
624+ # asyncio issue #184: Ensure that StreamReaderProtocol constructor
625625 # retrieves the current loop if the loop parameter is not set
626626 reader = asyncio .StreamReader ()
627627 self .assertIs (reader ._loop , self .loop )
@@ -630,7 +630,7 @@ def test_streamreaderprotocol_constructor(self):
630630 self .addCleanup (asyncio .set_event_loop , None )
631631 asyncio .set_event_loop (self .loop )
632632
633- # Tulip issue #184: Ensure that StreamReaderProtocol constructor
633+ # asyncio issue #184: Ensure that StreamReaderProtocol constructor
634634 # retrieves the current loop if the loop parameter is not set
635635 reader = mock .Mock ()
636636 protocol = asyncio .StreamReaderProtocol (reader )
0 commit comments