[Python-checkins] Fix typo in launcher.c (GH-24497)

corona10 webhook-mailer at python.org
Sat Feb 20 05:03:57 EST 2021


https://github.com/python/cpython/commit/4233ff3ee4add287b3617f38943d01a7a6f4d7c4
commit: 4233ff3ee4add287b3617f38943d01a7a6f4d7c4
branch: master
author: Ikko Ashimine <eltociear at gmail.com>
committer: corona10 <donghee.na92 at gmail.com>
date: 2021-02-20T19:03:50+09:00
summary:

Fix typo in launcher.c (GH-24497)

files:
M PC/launcher.c

diff --git a/PC/launcher.c b/PC/launcher.c
index cc2d35b2c4cb7..f5b225ac08cfe 100644
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -1552,8 +1552,8 @@ Launcher arguments:\n\n\
     fputws(L"\nany of the following, (in priority order):", stdout);
     fputws(L"\n An active virtual environment", stdout);
     fputws(L"\n A shebang line in the script (if present)", stdout);
-    fputws(L"\n With -2 or -3 flag a matching PY_PYTHON2 or PY_PYTHON3 Enviroment variable", stdout);
-    fputws(L"\n A PY_PYTHON Enviroment variable", stdout);
+    fputws(L"\n With -2 or -3 flag a matching PY_PYTHON2 or PY_PYTHON3 Environment variable", stdout);
+    fputws(L"\n A PY_PYTHON Environment variable", stdout);
     fputws(L"\n From [defaults] in py.ini in your %LOCALAPPDATA%\\py.ini", stdout);
     fputws(L"\n From [defaults] in py.ini beside py.exe (use `where py` to locate)", stdout);
     fputws(L"\n\nThe following help text is from Python:\n\n", stdout);



More information about the Python-checkins mailing list