summaryrefslogtreecommitdiffstatshomepage
path: root/py/objstringio.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/objstringio.c')
-rw-r--r--py/objstringio.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/py/objstringio.c b/py/objstringio.c
index 89b6790312..8f1f761138 100644
--- a/py/objstringio.c
+++ b/py/objstringio.c
@@ -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,