UCBArray
The UCBArray class is accessible via the pylogo.ucbcompat module.
Methods
f __delslice__(...) ...
x.__delslice__(i, j) <==> del x[i:j]
Use of negative indices is not supported.
f __setslice__(...) ...
x.__setslice__(i, j, y) <==> x[i:j]=y
Use of negative indices is not supported.
See the source for more information.