@miran certainly, the rationale is Python:
myString = "Some String"
print(myString[0 :]) # echos "Some String"
print(myString[0 : -1]) # echos "Some Strin"
That issue you linked explains it, thanks. I will mark this as solved.
