Actions
Bug #15444
closedfinite Ranges over Rationals are not iterable
Description
Under 2.5.3, finite ranges over rational values are iterable, given a valid step size:
((1/10r)..(1/2r)).step(1/10r).to_a
# => [(1/10), (1/5), (3/10), (2/5), (1/2)]
Under 2.6.0, this is not the case (StopIteration is raised immediately)
((1/10r)..(1/2r)).step(1/10r).to_a
# => []
((1/10r)..(1/2r)).step(1/10r).next
# => StopIteration (iteration reached an end)
However, stepping over an infinite range in 2.6.0 works:
((1/10r)..).step(1/10r).take(5)
# => [(1/10), (1/5), (3/10), (2/5), (1/2)]
Also reproduced on x86_64-darwin17.
Actions
Like0
Like0Like0