diff options
author | Guido van Rossum <guido@python.org> | 2001-07-18 16:59:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-07-18 16:59:46 (GMT) |
commit | 36002d7af1a9971c62e982cbbb1d1ce34610129d (patch) | |
tree | 2e8bb82be0321b45d783b3a2d4d7abe7d81480dc /Modules/main.c | |
parent | 5d808fba00ac4412a726e6ca382af1dd3b9038e4 (diff) | |
download | cpython-36002d7af1a9971c62e982cbbb1d1ce34610129d.zip cpython-36002d7af1a9971c62e982cbbb1d1ce34610129d.tar.gz cpython-36002d7af1a9971c62e982cbbb1d1ce34610129d.tar.bz2 |
Add "help" to the things one is encouraged to type for more
information. (I found this idea in the ActivePython 2.1 diffs.)
Diffstat (limited to 'Modules/main.c')
-rw-r--r-- | Modules/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c index 3ce83c3..72b756b 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; |