summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-04-08 04:07:02 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-04-08 04:07:02 +0300
commitb8cf9485508f4d2d52edf2734231f7dee1c1fd92 (patch)
treeb4aadd1cc3d9740fd2cbcb7eae460f37d343e106
parenta12a0f78b0462f9b5e8f3d4cb1b164656f44ad03 (diff)
unix, windows: There's no "help" builtin.
-rw-r--r--unix/main.c1
-rw-r--r--windows/main.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/unix/main.c b/unix/main.c
index 1200b7d5d..1549054f0 100644
--- a/unix/main.c
+++ b/unix/main.c
@@ -139,7 +139,6 @@ STATIC char *prompt(char *p) {
STATIC void do_repl(void) {
printf("Micro Python build " MICROPY_GIT_HASH " on " MICROPY_BUILD_DATE "; UNIX version\n");
- printf("Type \"help()\" for more information.\n");
for (;;) {
char *line = prompt(">>> ");
diff --git a/windows/main.c b/windows/main.c
index 575572ae3..36d98f73d 100644
--- a/windows/main.c
+++ b/windows/main.c
@@ -119,7 +119,6 @@ static char *prompt(char *p) {
static void do_repl(void) {
printf("Micro Python build " MICROPY_GIT_HASH " on " MICROPY_BUILD_DATE "; Windows version\n");
- printf("Type \"help()\" for more information.\n");
for (;;) {
char *line = prompt(">>> ");