diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-07-14 18:36:24 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-07-14 18:36:24 +0200 |
commit | daded8028357890c73a067c3a10ff747a1a3036b (patch) | |
tree | 3ff42f470278302979531b68492fc07b7d67e2cc /Lib/test | |
parent | 56ded52fa8bda4e85d28406a53d419cf30a8cda0 (diff) | |
parent | acdb782a83d72a823030335e8f190890ae4df9cf (diff) | |
download | cpython-git-daded8028357890c73a067c3a10ff747a1a3036b.tar.gz |
Merge with Python 3.4
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_asyncio/test_base_events.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_base_events.py b/Lib/test/test_asyncio/test_base_events.py index 27610f0d81..7bf07ed695 100644 --- a/Lib/test/test_asyncio/test_base_events.py +++ b/Lib/test/test_asyncio/test_base_events.py @@ -44,8 +44,6 @@ class BaseEventLoopTests(test_utils.TestCase): self.assertRaises( NotImplementedError, self.loop._write_to_self) self.assertRaises( - NotImplementedError, self.loop._read_from_self) - self.assertRaises( NotImplementedError, self.loop._make_read_pipe_transport, m, m) self.assertRaises( |