Merge "releasetools: Fix the doctest for rangelib.py." am: 7e85dd9dc0

am: 2b38618a62

Change-Id: Ib7835fe53b81a39903b8422cb6931b011788f0bb
This commit is contained in:
Tao Bao 2017-11-03 00:26:48 +00:00 committed by android-build-merger
commit ed6f6bc272
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: