From 95cc3ee00cfa079751ae2bb9a8d3387053b50489 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 19 Sep 2018 12:01:52 -0700 Subject: 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. --- Programs/python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Programs/python.c') 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 -- cgit v1.2.1