diff options
| author | Jim Mussared <jim.mussared@gmail.com> | 2022-08-18 15:01:26 +1000 |
|---|---|---|
| committer | Jim Mussared <jim.mussared@gmail.com> | 2023-06-08 17:54:11 +1000 |
| commit | f5f9edf6457624bf32e71b0c2fdcfbfa5d5753a6 (patch) | |
| tree | a8cce3668eed96ebb39abe626c6a8a52d5787f34 /extmod/modujson.c | |
| parent | 7f5d5c72718af773db751269c6ae14037b9c0727 (diff) | |
all: Rename UMODULE to MODULE in preprocessor/Makefile vars.
This work was funded through GitHub Sponsors.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'extmod/modujson.c')
| -rw-r--r-- | extmod/modujson.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extmod/modujson.c b/extmod/modujson.c index e67761e1a..1b475543e 100644 --- a/extmod/modujson.c +++ b/extmod/modujson.c @@ -32,9 +32,9 @@ #include "py/runtime.h" #include "py/stream.h" -#if MICROPY_PY_UJSON +#if MICROPY_PY_JSON -#if MICROPY_PY_UJSON_SEPARATORS +#if MICROPY_PY_JSON_SEPARATORS enum { DUMP_MODE_TO_STRING = 1, @@ -383,4 +383,4 @@ const mp_obj_module_t mp_module_json = { MP_REGISTER_MODULE(MP_QSTR_json, mp_module_json); -#endif // MICROPY_PY_UJSON +#endif // MICROPY_PY_JSON |
