- 06 Oct, 2016 3 commits
-
-
Boxiang Sun authored
In Pyston, PyClassObject is just an opaque pointer. Don't access it directly. Use PyObject_GetAttrWrapper which provided by Pyston: - d = ((PyClassObject *)cls)->cl_dict; + d = PyObject_GetAttrWrapper(cls);
-
Boxiang Sun authored
-
Boxiang Sun authored
-