Beispiel #1
0
 /// <summary>
 /// Gets the specified attribute from the object without running any custom lookup behavior
 /// (__getattr__ and __getattribute__)
 /// </summary>
 public static object __getattribute__(CodeContext /*!*/ context, object self, string name)
 {
     return(PythonOps.ObjectGetAttribute(context, self, name));
 }