We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53c0586 commit 10dcdfaCopy full SHA for 10dcdfa
native/python/pyjp_method.cpp
@@ -400,7 +400,8 @@ void PyJPMethod_initType(PyObject* module)
400
unsigned long flags = PyFunction_Type.tp_flags;
401
PyFunction_Type.tp_flags |= Py_TPFLAGS_BASETYPE;
402
PyJPMethod_Type = (PyTypeObject*) PyType_FromSpecWithBases(&methodSpec, tuple.get());
403
- PyFunction_Type.tp_flags = flags; JP_PY_CHECK();
+ PyFunction_Type.tp_flags = flags;
404
+ JP_PY_CHECK();
405
406
PyModule_AddObject(module, "_JMethod", (PyObject*) PyJPMethod_Type);
407
JP_PY_CHECK();
0 commit comments