Пример #1
0
 public void __setitem__(PyObject key, PyObject value) { // ???
   PyType self_type = getType();
   PyObject impl = self_type.lookup("__setitem__");
   if (impl != null) {
     impl.__get__(this, self_type).__call__(key, value);
     return;
   }
   super.__setitem__(key, value);
 }