summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2013-10-22 10:49:20 -0700
committerLarry Hastings <larry@hastings.org>2013-10-22 10:49:20 -0700
commitd0a7e678044dc86860cb362f153a2be5976200d9 (patch)
tree333e0926155d65c561418ce302c4a60d78156217 /Python/pythonrun.c
parente0d9a1c8bcaa0740b0a8d1e60070b947ab3463e7 (diff)
parent3f2f19230c8654461dfbcb68186babfb80d33ccc (diff)
downloadcpython-git-d0a7e678044dc86860cb362f153a2be5976200d9.tar.gz
Merge 3.4.0a4 release head back into trunk.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index b963ce1132..15a48f9947 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -116,6 +116,10 @@ int Py_IsolatedFlag = 0; /* for -I, isolate from user's env */
PyThreadState *_Py_Finalizing = NULL;
+/* Hack to force loading of object files */
+int (*_PyOS_mystrnicmp_hack)(const char *, const char *, Py_ssize_t) = \
+ PyOS_mystrnicmp; /* Python/pystrcmp.o */
+
/* PyModule_GetWarningsModule is no longer necessary as of 2.6
since _warnings is builtin. This API should not be used. */
PyObject *