Python Python2 から Python3 へのC Extension の移行
最初に追加
struct module_state {
PyObject *error;
};
#if PY_MAJOR_VERSION >= 3
#define GETSTATE(m) ((struct module_st...
Python
Python