diff options
author | Guido van Rossum <guido@python.org> | 2001-08-31 18:17:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-08-31 18:17:13 (GMT) |
commit | 97741a30414c41e314950844bebee3230e9d813d (patch) | |
tree | 3c2bb7884ddda5dc3ee29fcd024044b72760af80 /Modules/main.c | |
parent | 8031bbec4a50d98b53815d77e4c5fe8549ab97eb (diff) | |
download | cpython-97741a30414c41e314950844bebee3230e9d813d.zip cpython-97741a30414c41e314950844bebee3230e9d813d.tar.gz cpython-97741a30414c41e314950844bebee3230e9d813d.tar.bz2 |
Oops. The -W option takes args, not -X.
Diffstat (limited to 'Modules/main.c')
-rw-r--r-- | Modules/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c index 7c368c7..3f7b081 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -29,7 +29,7 @@ static char **orig_argv; static int orig_argc; /* command line options */ -#define BASE_OPTS "c:dD:EhiOStuUvVWxX:" +#define BASE_OPTS "c:dD:EhiOStuUvVW:xX" #ifndef RISCOS #define PROGRAM_OPTS BASE_OPTS |