summaryrefslogtreecommitdiff
path: root/ports/unix/coverage.c
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2023-06-06 22:15:44 +1000
committerJim Mussared <jim.mussared@gmail.com>2023-06-08 17:54:28 +1000
commita1fbb1980cf90cc58186eac9cc405a97ebd41e64 (patch)
treecbce396ba0360d134f82e0287c8b2a03a116ff8a /ports/unix/coverage.c
parent8211d56712301d58970904892da5312b11b2ab7c (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 'ports/unix/coverage.c')
-rw-r--r--ports/unix/coverage.c2
1 files changed, 1 insertions, 1 deletions
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)