Commit 5483745d authored by Stefan Behnel's avatar Stefan Behnel

remove 'inline' hint for lengthy dict.get() code

parent 78e5a552
......@@ -1620,7 +1620,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
dict_getitem_default_utility_code = UtilityCode(
proto = '''
static CYTHON_INLINE PyObject* __Pyx_PyDict_GetItemDefault(PyObject* d, PyObject* key, PyObject* default_value) {
static PyObject* __Pyx_PyDict_GetItemDefault(PyObject* d, PyObject* key, PyObject* default_value) {
PyObject* value;
#if PY_MAJOR_VERSION >= 3
value = PyDict_GetItemWithError(d, key);
......
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