diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-09-19 12:01:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-19 12:01:52 -0700 |
commit | 95cc3ee00cfa079751ae2bb9a8d3387053b50489 (patch) | |
tree | 9100630fcae5cd45caaf00aeff5e5f823646e162 /Programs/python.c | |
parent | 73c0006e71683b7d5b28192f18a2b9796e4195ef (diff) | |
download | cpython-git-95cc3ee00cfa079751ae2bb9a8d3387053b50489.tar.gz |
Revert "[3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off by default (GH-9379)" (GH-9416)
This reverts commit 144f1e2c6f4a24bd288c045986842c65cc289684.
Diffstat (limited to 'Programs/python.c')
-rw-r--r-- | Programs/python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Programs/python.c b/Programs/python.c index c7697facbe..78e48f800c 100644 --- a/Programs/python.c +++ b/Programs/python.c @@ -6,7 +6,7 @@ int wmain(int argc, wchar_t **argv) { - return _Py_WindowsMain(argc, argv); + return Py_Main(argc, argv); } #else int |