diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2017-11-29 16:23:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-29 16:23:43 (GMT) |
commit | cc83920ad267c992bc421987829da04d88ae816b (patch) | |
tree | f0d5468502f7c857b6f8afc412898439a257dfad /Lib/test/test_asyncio/test_unix_events.py | |
parent | 5d39e0429029324cae90bba2f19fb689b007c7d6 (diff) | |
download | cpython-cc83920ad267c992bc421987829da04d88ae816b.zip cpython-cc83920ad267c992bc421987829da04d88ae816b.tar.gz cpython-cc83920ad267c992bc421987829da04d88ae816b.tar.bz2 |
bpo-32166: Drop Python 3.4 code from asyncio (#4612)
* Drop Python 3.4 code from asyncio
* Fix notes
* Add missing imports
* Restore comment
* Resort imports
* Drop Python 3.4-3.5 specific code
* Drop redunant check
* Fix tests
* Restore _COROUTINE_TYPES order
* Remove useless code
Diffstat (limited to 'Lib/test/test_asyncio/test_unix_events.py')
-rw-r--r-- | Lib/test/test_asyncio/test_unix_events.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py index 04284fa..284c73d 100644 --- a/Lib/test/test_asyncio/test_unix_events.py +++ b/Lib/test/test_asyncio/test_unix_events.py @@ -394,7 +394,7 @@ class UnixReadPipeTransportTests(test_utils.TestCase): self.pipe = mock.Mock(spec_set=io.RawIOBase) self.pipe.fileno.return_value = 5 - blocking_patcher = mock.patch('asyncio.unix_events._set_nonblocking') + blocking_patcher = mock.patch('os.set_blocking') blocking_patcher.start() self.addCleanup(blocking_patcher.stop) @@ -544,7 +544,7 @@ class UnixWritePipeTransportTests(test_utils.TestCase): self.pipe = mock.Mock(spec_set=io.RawIOBase) self.pipe.fileno.return_value = 5 - blocking_patcher = mock.patch('asyncio.unix_events._set_nonblocking') + blocking_patcher = mock.patch('os.set_blocking') blocking_patcher.start() self.addCleanup(blocking_patcher.stop) |