bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)
This commit is contained in:
parent
aef1283ba4
commit
42c35d9c0c
|
@ -121,6 +121,10 @@ class WindowsConsoleIOTests(unittest.TestCase):
|
|||
else:
|
||||
self.assertNotIsInstance(f, ConIO)
|
||||
|
||||
def test_write_empty_data(self):
|
||||
with ConIO('CONOUT$', 'w') as f:
|
||||
self.assertEqual(f.write(b''), 0)
|
||||
|
||||
def assertStdinRoundTrip(self, text):
|
||||
stdin = open('CONIN$', 'r')
|
||||
old_stdin = sys.stdin
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Fixed WindowsConsoleIO.write() for writing empty data.
|
|
@ -964,6 +964,9 @@ _io__WindowsConsoleIO_write_impl(winconsoleio *self, Py_buffer *b)
|
|||
if (!self->writable)
|
||||
return err_mode("writing");
|
||||
|
||||
if (!b->len) {
|
||||
return PyLong_FromLong(0);
|
||||
}
|
||||
if (b->len > BUFMAX)
|
||||
len = BUFMAX;
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue