diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2015-07-09 21:14:50 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2015-07-09 21:14:50 (GMT) |
| commit | fb578f0a0556951251a73726e574d821011c0927 (patch) | |
| tree | 9f8dfcc9164f215be3803faa7b46053c36cc4aa9 /Lib/test/test_asyncio/test_streams.py | |
| parent | c5ea754e484d73f04b1a361d82d0eed1b51dfdc8 (diff) | |
| parent | e6ecea53c8394b5101bb3ddab3216a948065ef97 (diff) | |
| download | cpython-fb578f0a0556951251a73726e574d821011c0927.zip cpython-fb578f0a0556951251a73726e574d821011c0927.tar.gz cpython-fb578f0a0556951251a73726e574d821011c0927.tar.bz2 | |
Merge 3.4 (asyncio)
Diffstat (limited to 'Lib/test/test_asyncio/test_streams.py')
| -rw-r--r-- | Lib/test/test_asyncio/test_streams.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py index 2273049..242b377 100644 --- a/Lib/test/test_asyncio/test_streams.py +++ b/Lib/test/test_asyncio/test_streams.py @@ -580,7 +580,7 @@ class StreamReaderTests(test_utils.TestCase): @unittest.skipIf(sys.platform == 'win32', "Don't have pipes") def test_read_all_from_pipe_reader(self): - # See Tulip issue 168. This test is derived from the example + # See asyncio issue 168. This test is derived from the example # subprocess_attach_read_pipe.py, but we configure the # StreamReader's limit so that twice it is less than the size # of the data writter. Also we must explicitly attach a child @@ -621,7 +621,7 @@ os.close(fd) self.addCleanup(asyncio.set_event_loop, None) asyncio.set_event_loop(self.loop) - # Tulip issue #184: Ensure that StreamReaderProtocol constructor + # asyncio issue #184: Ensure that StreamReaderProtocol constructor # retrieves the current loop if the loop parameter is not set reader = asyncio.StreamReader() self.assertIs(reader._loop, self.loop) @@ -630,7 +630,7 @@ os.close(fd) self.addCleanup(asyncio.set_event_loop, None) asyncio.set_event_loop(self.loop) - # Tulip issue #184: Ensure that StreamReaderProtocol constructor + # asyncio issue #184: Ensure that StreamReaderProtocol constructor # retrieves the current loop if the loop parameter is not set reader = mock.Mock() protocol = asyncio.StreamReaderProtocol(reader) |
