Commit ebc39e39 authored by Stefan Behnel's avatar Stefan Behnel

add a branch hint in helper function

--HG--
extra : transplant_source : %D6h%3C%E4%02%B9%D5%D1%B0%95%5Bly.%18%B3%D20%A7%EC
parent 6de8f848
......@@ -994,7 +994,7 @@ static CYTHON_INLINE PyObject *__Pyx_GetModuleGlobalName(PyObject *name) {
PyObject *result;
#if CYTHON_COMPILING_IN_CPYTHON
result = PyDict_GetItem($moddict_cname, name);
if (result) {
if (likely(result)) {
Py_INCREF(result);
} else {
#else
......
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