File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ What's New in Python 3.3.3 release candidate 1?
1212Core and Builtins
1313-----------------
1414
15+ - Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the
16+ Python executable and not removed by the linker's optimizer.
17+
1518- Issue #19279: UTF-7 decoder no more produces illegal strings.
1619
1720- Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at
Original file line number Diff line number Diff line change @@ -96,6 +96,10 @@ int Py_HashRandomizationFlag = 0; /* for -R and PYTHONHASHSEED */
9696
9797PyThreadState * _Py_Finalizing = NULL ;
9898
99+ /* Hack to force loading of object files */
100+ int (* _PyOS_mystrnicmp_hack )(const char * , const char * , Py_ssize_t ) = \
101+ PyOS_mystrnicmp ; /* Python/pystrcmp.o */
102+
99103/* PyModule_GetWarningsModule is no longer necessary as of 2.6
100104since _warnings is builtin. This API should not be used. */
101105PyObject *
You can’t perform that action at this time.
0 commit comments