From a1fbb1980cf90cc58186eac9cc405a97ebd41e64 Mon Sep 17 00:00:00 2001 From: Jim Mussared Date: Tue, 6 Jun 2023 22:15:44 +1000 Subject: 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 --- ports/unix/coverage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ports/unix/coverage.c') diff --git a/ports/unix/coverage.c b/ports/unix/coverage.c index 6022ff2bf..f3bb3d450 100644 --- a/ports/unix/coverage.c +++ b/ports/unix/coverage.c @@ -364,7 +364,7 @@ STATIC mp_obj_t extra_coverage(void) { mp_repl_autocomplete("import ", 7, &mp_plat_print, &str); // expect the list of builtins len = mp_repl_autocomplete("import ti", 9, &mp_plat_print, &str); // expect "me" mp_printf(&mp_plat_print, "%.*s\n", (int)len, str); - mp_repl_autocomplete("import time", 11, &mp_plat_print, &str); // expect "time timeq" + mp_repl_autocomplete("import m", 8, &mp_plat_print, &str); // expect "micropython machine math" mp_store_global(MP_QSTR_sys, mp_import_name(MP_QSTR_sys, mp_const_none, MP_OBJ_NEW_SMALL_INT(0))); mp_repl_autocomplete("sys.", 4, &mp_plat_print, &str); // expect dir(sys) -- cgit v1.2.3