bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)

This commit is contained in:
Serhiy Storchaka 2018-02-24 18:55:51 +02:00 committed by GitHub
parent aef1283ba4
commit 42c35d9c0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 0 deletions

View file

@ -121,6 +121,10 @@ def test_conout_path(self):
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

View file

@ -0,0 +1 @@
Fixed WindowsConsoleIO.write() for writing empty data.

View file

@ -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