From: Guido van Rossum Date: Wed, 18 Jul 2001 16:59:46 +0000 (+0000) Subject: Add "help" to the things one is encouraged to type for more X-Git-Tag: v2.2a3~1076 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=36002d7af1a9971c62e982cbbb1d1ce34610129d;p=thirdparty%2FPython%2Fcpython.git Add "help" to the things one is encouraged to type for more information. (I found this idea in the ActivePython 2.1 diffs.) --- diff --git a/Modules/main.c b/Modules/main.c index 3ce83c3538c1..72b756be2f99 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -20,7 +20,8 @@ #include "pygetopt.h" #define COPYRIGHT \ - "Type \"copyright\", \"credits\" or \"license\" for more information." + "Type \"help\", \"copyright\", \"credits\" or \"license\" " \ + "for more information." /* For Py_GetArgcArgv(); set by main() */ static char **orig_argv;