Merge "releasetools: Fix the doctest for rangelib.py."

This commit is contained in:
Treehugger Robot 2017-11-03 00:18:19 +00:00 committed by Gerrit Code Review
commit 7e85dd9dc0
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ class RangeSet(object):
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> list(RangeSet("10-19 3-5").next_item())
[3, 4, 5, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
>>> list(rangelib.RangeSet("10-19 3 5 7").next_item())
>>> list(RangeSet("10-19 3 5 7").next_item())
[3, 5, 7, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
"""
for s, e in self: