- propertyGet
PyObject* propertyGet(PyObject* self_, void* closure)
Undocumented in source. Be warned that the author may not have intended to support it.
- propertySet
int propertySet(PyObject* self_, PyObject* value, void* closure)
Undocumented in source. Be warned that the author may not have intended to support it.
- set
int set(PyObject* self_, PyObject* value, void* closure)
Undocumented in source. Be warned that the author may not have intended to support it.
A Python class that mirrors the D type T. For instance, this struct:
Will generate a Python class called Foo with two members, and trying to assign anything but an integer to Foo.i or a string to Foo.s in Python will raise TypeError.