mp_subscript ( IntPtr op, IntPtr key ) : IntPtr |
ConstructorBinding.GetItem(PyObject *o, PyObject *key) Return element of o corresponding to the object key or NULL on failure. This is the equivalent of the Python expression o[key]. |
|
tp_descr_get ( IntPtr op, IntPtr instance, IntPtr owner ) : IntPtr |
Descriptor __get__ implementation. Implements a Python type that wraps a CLR ctor call that requires the use of a .Overloads[pyTypeOrType...] syntax to allow explicit ctor overload selection. Python 2.6.5 docs: object.__get__(self, instance, owner) Called to get the attribute of the owner class (class attribute access) or of an instance of that class (instance attribute access). owner is always the owner class, while instance is the instance that the attribute was accessed through, or None when the attribute is accessed through the owner. This method should return the (computed) attribute value or raise an AttributeError exception. |
|