py/objstringio: Guard bytesio_stream_p struct w/ MICROPY_PY_IO_BYTESIO.

It's static and can lead to a compilation warning/error when
MICROPY_PY_IO_BYTESIO is disabled.
pull/4927/head
Paul m. p. P 2019-07-16 06:00:36 +02:00 zatwierdzone przez Damien George
rodzic bc66fe9064
commit 3b3a4749ce
1 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -244,12 +244,6 @@ STATIC const mp_stream_p_t stringio_stream_p = {
.is_text = true,
};
STATIC const mp_stream_p_t bytesio_stream_p = {
.read = stringio_read,
.write = stringio_write,
.ioctl = stringio_ioctl,
};
const mp_obj_type_t mp_type_stringio = {
{ &mp_type_type },
.name = MP_QSTR_StringIO,
@ -262,6 +256,12 @@ const mp_obj_type_t mp_type_stringio = {
};
#if MICROPY_PY_IO_BYTESIO
STATIC const mp_stream_p_t bytesio_stream_p = {
.read = stringio_read,
.write = stringio_write,
.ioctl = stringio_ioctl,
};
const mp_obj_type_t mp_type_bytesio = {
{ &mp_type_type },
.name = MP_QSTR_BytesIO,