# Rule request ## Thesis ```python # bad a[1:4:] # good a[1:4] # bad a[1::] # good a[1:] # bad a[1:4:1] # good a[1:4] # bad a[1::1] # good a[1:] # bad a[::1] # good a.copy() ``` Case with `a[::]` will be covered in #1011 <!-- Thanks for coming up with a proposal! --> <!-- What exactly do you propose? Please, provide code examples. --> ## Reasoning Consistency <!-- Why do you think this is a good idea? Please, include some strong points and considerations. --> <!-- Love wemake-python-styleguide? ❤️ Do you want your features to be implemented faster? Please consider supporting our collective: 👉 https://opencollective.com/wemake-python-styleguide/donate -->
Rule request
Thesis
Case with
a[::]will be covered in #1011Reasoning
Consistency