- 11 Oct, 2016 1 commit
-
-
Boxiang Sun authored
In zope ExtensionClass, it just copied and inlined the codes from CPython's PyObject_GenericGetAttr and _PyObject_GetDictPtr. Which are not work for Pyston. So just call correspond function in Pyston.
-
- 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
-