Commit 876e789f authored by Benjamin Peterson's avatar Benjamin Peterson

merge heads

parents 26da9200 8757cad3
......@@ -396,6 +396,12 @@ Py_Main(int argc, char **argv)
case 'W':
PySys_AddWarnOption(_PyOS_optarg);
/* Extremely obscure hack: if _PyOS_optarg was one character,
PyString_FromString in PySys_AddWarnOption will try to intern
it. This is bad because hash randomization has not been setup
yet, so the string will get the wrong hash. The following call
will cause all the cached characters to be released. */
PyString_Fini();
break;
case 'R':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment