summaryrefslogtreecommitdiff
path: root/shared-bindings/help.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2018-11-09 16:41:08 -0800
committerScott Shawcroft <scott@tannewt.org>2018-11-09 16:41:08 -0800
commit355abc835ea75715b4dea38604ef64f8c4eeaa0f (patch)
tree7e7c16e386157a42f686b27dbb6731738683befa /shared-bindings/help.c
parent97bc95183d5114ce69c9387ebd2e2aa13feb65a7 (diff)
Fix output overflow and make help translatable
Diffstat (limited to 'shared-bindings/help.c')
-rw-r--r--shared-bindings/help.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/shared-bindings/help.c b/shared-bindings/help.c
index 78301a91a..e0770ff3c 100644
--- a/shared-bindings/help.c
+++ b/shared-bindings/help.c
@@ -24,8 +24,6 @@
* THE SOFTWARE.
*/
-#include "genhdr/mpversion.h"
-
//| :func:`help` - Built-in method to provide helpful information
//| ==============================================================
//|
@@ -34,12 +32,3 @@
//| Prints a help method about the given object. When ``object`` is none,
//| prints general port information.
//|
-
-// TODO(tannewt): Figure out how to translate this. Its weird because its a global string.
-
-const char circuitpython_help_text[] =
- "Welcome to Adafruit CircuitPython " MICROPY_GIT_TAG "!\r\n"
- "\r\n"
- "Please visit learn.adafruit.com/category/circuitpython for project guides.\r\n"
- "\r\n"
- "To list built-in modules please do `help(\"modules\")`.\r\n";