diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-08 04:07:02 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-08 04:07:02 +0300 |
commit | b8cf9485508f4d2d52edf2734231f7dee1c1fd92 (patch) | |
tree | b4aadd1cc3d9740fd2cbcb7eae460f37d343e106 /unix | |
parent | a12a0f78b0462f9b5e8f3d4cb1b164656f44ad03 (diff) | |
download | micropython-b8cf9485508f4d2d52edf2734231f7dee1c1fd92.tar.gz micropython-b8cf9485508f4d2d52edf2734231f7dee1c1fd92.zip |
unix, windows: There's no "help" builtin.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/unix/main.c b/unix/main.c index 1200b7d5d1..1549054f04 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(">>> "); |