summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Modules/main.c2
-rw-r--r--Python/getopt.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/main.c b/Modules/main.c
index 8e02fe4f46..38b6223ac2 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -390,7 +390,7 @@ Py_Main(int argc, char **argv)
skipfirstline = 1;
break;
- /* case 'X': reserved for non-standard arguments */
+ /* case 'X': reserved for implementation-specific arguments */
case 'U':
Py_UnicodeFlag++;
diff --git a/Python/getopt.c b/Python/getopt.c
index acdd5d778b..247600bf2a 100644
--- a/Python/getopt.c
+++ b/Python/getopt.c
@@ -88,7 +88,7 @@ int _PyOS_GetOpt(int argc, char **argv, char *optstring)
if (option == 'X') {
fprintf(stderr,
- "-X is reserved for non-standard arguments\n");
+ "-X is reserved for implementation-specific arguments\n");
return '_';
}