We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33bf9dc commit 20dd756Copy full SHA for 20dd756
Python/initconfig.c
@@ -2121,6 +2121,10 @@ _PyConfig_InitImportConfig(PyConfig *config)
2121
return config_init_import(config, 1);
2122
}
2123
2124
+// List of known xoptions to validate against the provided ones. Note that all
2125
+// options are listed, even if they are only available if a specific macro is
2126
+// set, like -X showrefcount which requires a debug build. In this case unknown
2127
+// options are silently ignored.
2128
const wchar_t* known_xoptions[] = {
2129
L"faulthandler",
2130
L"showrefcount",
0 commit comments