diff options
author | Yonatan Goldschmidt <yon.goldschmidt@gmail.com> | 2019-02-10 22:35:18 +0200 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-02-14 00:35:45 +1100 |
commit | bc4f8b438b56cf1b4f6b44febcd0d83599cbbd68 (patch) | |
tree | 48a549df981c2471d12cdbe9f135f90b37cf9878 /py/objmodule.c | |
parent | d1acca3c71780545e067e85b444b495cc9801b2b (diff) | |
download | micropython-bc4f8b438b56cf1b4f6b44febcd0d83599cbbd68.tar.gz micropython-bc4f8b438b56cf1b4f6b44febcd0d83599cbbd68.zip |
extmod/moduwebsocket: Refactor `websocket` to `uwebsocket`.
As mentioned in #4450, `websocket` was experimental with a single intended
user, `webrepl`. Therefore, we'll make this change without a weak
link `websocket` -> `uwebsocket`.
Diffstat (limited to 'py/objmodule.c')
-rw-r--r-- | py/objmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/objmodule.c b/py/objmodule.c index 3a00b7ddc1..9ba617707a 100644 --- a/py/objmodule.c +++ b/py/objmodule.c @@ -211,8 +211,8 @@ STATIC const mp_rom_map_elem_t mp_builtin_module_table[] = { #if MICROPY_PY_LWIP { MP_ROM_QSTR(MP_QSTR_lwip), MP_ROM_PTR(&mp_module_lwip) }, #endif -#if MICROPY_PY_WEBSOCKET - { MP_ROM_QSTR(MP_QSTR_websocket), MP_ROM_PTR(&mp_module_websocket) }, +#if MICROPY_PY_UWEBSOCKET + { MP_ROM_QSTR(MP_QSTR_uwebsocket), MP_ROM_PTR(&mp_module_uwebsocket) }, #endif #if MICROPY_PY_WEBREPL { MP_ROM_QSTR(MP_QSTR__webrepl), MP_ROM_PTR(&mp_module_webrepl) }, |