-
Notifications
You must be signed in to change notification settings - Fork 95
Slice function of range type must be supported #77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
If this issue is valid, Can I try this issue? |
@HyeockJinKim go a head :) |
HyeockJinKim
added a commit
to HyeockJinKim/gpython
that referenced
this issue
Sep 15, 2019
Crate a new range object by calculating start, stop, and step when slice is entered as argument to the __getitem__ function of the range Fixes go-python#77
HyeockJinKim
added a commit
to HyeockJinKim/gpython
that referenced
this issue
Sep 15, 2019
Crate a new range object by calculating start, stop, and step when slice is entered as argument to the __getitem__ function of the range Fixes go-python#77
HyeockJinKim
added a commit
to HyeockJinKim/gpython
that referenced
this issue
Sep 15, 2019
Crate a new range object by calculating start, stop, and step when slice is entered as argument to the __getitem__ function of the range Fixes go-python#77
HyeockJinKim
added a commit
to HyeockJinKim/gpython
that referenced
this issue
Sep 16, 2019
Crate a new range object by calculating start, stop, and step when slice is entered as argument to the __getitem__ function of the range Fixes go-python#77
HyeockJinKim
added a commit
to HyeockJinKim/gpython
that referenced
this issue
Sep 17, 2019
Crate a new range object by calculating start, stop, and step when slice is entered as argument to the __getitem__ function of the range Fixes go-python#77
HyeockJinKim
added a commit
to HyeockJinKim/gpython
that referenced
this issue
Sep 26, 2019
Crate a new range object by calculating start, stop, and step when slice is entered as argument to the __getitem__ function of the range Fixes go-python#77
corona10
pushed a commit
that referenced
this issue
Sep 26, 2019
* Add Slice function for range type Crate a new range object by calculating start, stop, and step when slice is entered as argument to the __getitem__ function of the range Fixes #77 * Add typecall for __index__ in Index function If __index__ is defined when class is used as index value, __index__ value is used. * Add tests for range
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unlike the list type, the range type does not support the slice function. slice in the range type must be supported.
Expected result
Actual result
The text was updated successfully, but these errors were encountered: