diff options
author | Larry Hastings <larry@hastings.org> | 2013-10-22 10:49:20 -0700 |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2013-10-22 10:49:20 -0700 |
commit | d0a7e678044dc86860cb362f153a2be5976200d9 (patch) | |
tree | 333e0926155d65c561418ce302c4a60d78156217 /Python/pythonrun.c | |
parent | e0d9a1c8bcaa0740b0a8d1e60070b947ab3463e7 (diff) | |
parent | 3f2f19230c8654461dfbcb68186babfb80d33ccc (diff) | |
download | cpython-git-d0a7e678044dc86860cb362f153a2be5976200d9.tar.gz |
Merge 3.4.0a4 release head back into trunk.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 4 |
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 * |