¿Cuál es el nombre del método para anular el []
operador (notación de subíndice) para una clase en Python?
python
operator-overloading
Sahas
fuente
fuente
__getslice__,
__setslice__` y__delslice__' have been deprecated for the last few releases of ver 2.x (not sure exactly when), and are no longer supported in ver 3.x. Instead, use
__getitem__.
__setitem__` y__delitem__' and test if the argument is of type
corte, i.e.:
si es instancia (arg, corte): ...Estás buscando el
__getitem__
método. Ver http://docs.python.org/reference/datamodel.html , sección 3.4.6fuente