(original) (raw)
Index: Python/getopt.c =================================================================== --- Python/getopt.c (revision 62327) +++ Python/getopt.c (working copy) @@ -88,7 +88,7 @@ if (option == 'X') { fprintf(stderr, - "-X is reserved for non-standard arguments\n"); + "-X is reserved for implementation-specific arguments\n"); return '_'; } Index: Modules/main.c =================================================================== --- Modules/main.c (revision 62327) +++ Modules/main.c (working copy) @@ -390,7 +390,7 @@ skipfirstline = 1; break; - /* case 'X': reserved for non-standard arguments */ + /* case 'X': reserved for implementation-specific arguments */ case 'U': Py_UnicodeFlag++;