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

am: 7e85dd9dc0

Change-Id: I703e8276d1325aa69671eb48676b6e864f3fca8d
This commit is contained in:
Tao Bao 2017-11-03 00:24:06 +00:00 committed by android-build-merger
commit 2b38618a62
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: