diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-13 22:02:27 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-13 22:02:27 (GMT) |
commit | 8f6b6b0cc3febd15e33a96bd31dcb3cbef2ad1ac (patch) | |
tree | 53db405b86756f9164c15497b8696a959f30ccbb /Modules | |
parent | aa96592a59e1a79246283cddf026a72c9a16d11b (diff) | |
download | cpython-8f6b6b0cc3febd15e33a96bd31dcb3cbef2ad1ac.zip cpython-8f6b6b0cc3febd15e33a96bd31dcb3cbef2ad1ac.tar.gz cpython-8f6b6b0cc3febd15e33a96bd31dcb3cbef2ad1ac.tar.bz2 |
Issue #9992: Remove PYTHONFSENCODING environment variable.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/main.c b/Modules/main.c index 4a10d93..c9499ac 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -99,9 +99,6 @@ static char *usage_5 = " The default module search path uses %s.\n" "PYTHONCASEOK : ignore case in 'import' statements (Windows).\n" "PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n" -#if !(defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)) && !defined(__APPLE__) -"PYTHONFSENCODING: Encoding used for the filesystem.\n" -#endif ; static int |