diff options
| author | Jim Mussared <jim.mussared@gmail.com> | 2023-06-06 22:15:44 +1000 |
|---|---|---|
| committer | Jim Mussared <jim.mussared@gmail.com> | 2023-06-08 17:54:28 +1000 |
| commit | a1fbb1980cf90cc58186eac9cc405a97ebd41e64 (patch) | |
| tree | cbce396ba0360d134f82e0287c8b2a03a116ff8a /py | |
| parent | 8211d56712301d58970904892da5312b11b2ab7c (diff) | |
extmod/modtimeq: Remove timeq module.
This is a MicroPython-specific module that existed to support the old
version of uasyncio. It's undocumented and not enabled on all ports and
takes up code size unnecessarily.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'py')
| -rw-r--r-- | py/mpconfig.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index eb23c5965..831fd534f 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -1600,11 +1600,6 @@ typedef double mp_float_t; #define MICROPY_PY_HEAPQ (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES) #endif -// Optimized heap queue for relative timestamps (only used by uasyncio v2) -#ifndef MICROPY_PY_TIMEQ -#define MICROPY_PY_TIMEQ (0) -#endif - #ifndef MICROPY_PY_HASHLIB #define MICROPY_PY_HASHLIB (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES) #endif |
