File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ What's New in Python 2.7.6?
99Core and Builtins
1010-----------------
1111
12+ - Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the
13+ Python executable and not removed by the linker's optimizer.
14+
1215- Issue #19279: UTF-7 decoder no more produces illegal unicode strings.
1316
1417- Issue #18739: Fix an inconsistency between math.log(n) and math.log(long(n));
Original file line number Diff line number Diff line change @@ -91,6 +91,11 @@ int _Py_QnewFlag = 0;
9191int Py_NoUserSiteDirectory = 0 ; /* for -s and site.py */
9292int Py_HashRandomizationFlag = 0 ; /* for -R and PYTHONHASHSEED */
9393
94+
95+ /* Hack to force loading of object files */
96+ int (* _PyOS_mystrnicmp_hack )(const char * , const char * , Py_ssize_t ) = \
97+ PyOS_mystrnicmp ; /* Python/pystrcmp.o */
98+
9499/* PyModule_GetWarningsModule is no longer necessary as of 2.6
95100since _warnings is builtin. This API should not be used. */
96101PyObject *
You can’t perform that action at this time.
0 commit comments