bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)
(cherry picked from commit 42c35d9c0c
)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
46632f4d3c
commit
e49bf0f353
|
@ -121,6 +121,10 @@ class WindowsConsoleIOTests(unittest.TestCase):
|
||||||
else:
|
else:
|
||||||
self.assertNotIsInstance(f, ConIO)
|
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):
|
def assertStdinRoundTrip(self, text):
|
||||||
stdin = open('CONIN$', 'r')
|
stdin = open('CONIN$', 'r')
|
||||||
old_stdin = sys.stdin
|
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)
|
if (!self->writable)
|
||||||
return err_mode("writing");
|
return err_mode("writing");
|
||||||
|
|
||||||
|
if (!b->len) {
|
||||||
|
return PyLong_FromLong(0);
|
||||||
|
}
|
||||||
if (b->len > BUFMAX)
|
if (b->len > BUFMAX)
|
||||||
len = BUFMAX;
|
len = BUFMAX;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue