You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 31, 2020. It is now read-only.
Many objects do not support negative indexes with slices. The slicing behavior is handled with __getitem__.
Added support for negative index slicing in Bytes.__getitem__ in pull request #574. Bytes.__getitem__ could be used as an example for supporting negative slicing in other objects which support __getitem__.
The text was updated successfully, but these errors were encountered:
voc/python/common/org/python/types/ByteArray.java is one among which supports __getitem__..
I am currently working on this to support negative slicing.
Thank you.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Many objects do not support negative indexes with slices. The slicing behavior is handled with
__getitem__
.Added support for negative index slicing in
Bytes.__getitem__
in pull request #574.Bytes.__getitem__
could be used as an example for supporting negative slicing in other objects which support__getitem__
.The text was updated successfully, but these errors were encountered: