Commit 28975160 authored by Jason Madden's avatar Jason Madden

Whoops, libuv can't handle normal files on Linux.

parent 0838e93d
...@@ -491,7 +491,7 @@ class TestOpenDescriptor(CleanupMixin, greentest.TestCase): ...@@ -491,7 +491,7 @@ class TestOpenDescriptor(CleanupMixin, greentest.TestCase):
def test_atomicwrite_fd(self): def test_atomicwrite_fd(self):
from gevent._fileobjectcommon import WriteallMixin from gevent._fileobjectcommon import WriteallMixin
# It basically only does something when buffering is otherwise disabled # It basically only does something when buffering is otherwise disabled
fileno, _path = self._mkstemp('.gevent_test_atomicwrite_fd') fileno, _w = self._pipe()
desc = self._makeOne(fileno, 'wb', desc = self._makeOne(fileno, 'wb',
buffering=0, buffering=0,
closefd=False, closefd=False,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment