summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorretsyo <lepto.python@gmail.com>2021-02-19 18:53:09 +0800
committerDamien George <damien@micropython.org>2021-11-17 14:52:39 +1100
commite5f9e2febc6e5f5f0a884a8036e0afb002680bc1 (patch)
tree79fde17cd2fd6fb151a3809908bd41b40281d136
parenta4c0f52714ed176587cb43f98ea7f3b2264c600e (diff)
windows/mpconfigport.h: Enable help and help("modules").
Following a similar change to the unix port in 6430cd3e02d4ec4a8fc949754b434f745b1973e6
-rw-r--r--ports/windows/mpconfigport.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ports/windows/mpconfigport.h b/ports/windows/mpconfigport.h
index 4a8a90259..8dd95e769 100644
--- a/ports/windows/mpconfigport.h
+++ b/ports/windows/mpconfigport.h
@@ -76,6 +76,8 @@
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (1)
#define MICROPY_PY_BUILTINS_INPUT (1)
#define MICROPY_PY_BUILTINS_POW3 (1)
+#define MICROPY_PY_BUILTINS_HELP (1)
+#define MICROPY_PY_BUILTINS_HELP_MODULES (1)
#define MICROPY_PY_BUILTINS_ROUND_INT (1)
#define MICROPY_PY_MICROPYTHON_MEM_INFO (1)
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)