Make the range function work with integers#365
Conversation
This is needed for the future parser which actually treats numbers as
numbers and strings as strings. With this patch you can use range(1,5)
instead of having to quote them like range('1','5').
|
👍 |
|
nice |
|
I'd suggest adding coverage of a 3 parameters call with all integers. As the function stands now, |
|
I'll add more tests, but actually both Stuff like |
|
hmmm. I'm not sure why that's the behavior. |
|
Not sure about which behavior? On Wed, 12 Nov 2014 18:28 Joshua Hoblitt notifications@github.com wrote:
|
Make the range function work with integers
This is needed for the future parser which actually treats numbers as
numbers and strings as strings. With this patch you can use range(1,5)
instead of having to quote them like range('1','5').
Build on #364 which is just a style fix.