diff options
| author | Victor Stinner <vstinner@redhat.com> | 2018-09-19 19:01:52 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-19 19:01:52 (GMT) |
| commit | 95cc3ee00cfa079751ae2bb9a8d3387053b50489 (patch) | |
| tree | 9100630fcae5cd45caaf00aeff5e5f823646e162 /Programs/python.c | |
| parent | 73c0006e71683b7d5b28192f18a2b9796e4195ef (diff) | |
| download | cpython-95cc3ee00cfa079751ae2bb9a8d3387053b50489.zip cpython-95cc3ee00cfa079751ae2bb9a8d3387053b50489.tar.gz cpython-95cc3ee00cfa079751ae2bb9a8d3387053b50489.tar.bz2 | |
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 c7697fa..78e48f8 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 |
