Lines Matching refs:row
113 for row in range(2, 4):
115 writer.writerow([None, date.isoformat(), f'{major}.{minor}.0-rc{row}', args.manager])
157 for row in range(base + 1, 3):
159 writer.writerow([None, date.isoformat(), f'{args.series}.{row}', args.manager])
174 one we're appending, then it yields the last row. When control is
179 for row in current:
180 if in_wanted and row[0]:
184 if row[0] == args.series:
186 if in_wanted and len(row) >= 5 and row[4] in {LAST_RELEASE.format(args.series), OR_FINAL.format(args.series)}:
189 r = list(row)
192 row = typing.cast('CalendarRowType', tuple(r))
193 last_row = row
194 writer.writerow(row)
198 yield row
204 with write_existing(writer, current) as row:
206 if '-rc' in row[2]:
207 first_point = int(row[2].split('rc')[-1]) + 1
211 first_point = int(row[2].split('-')[0].split('.')[-1]) + 1
215 date = datetime.date.fromisoformat(row[1])
218 r = [None, date.isoformat(), template.format(args.series, i), row[3], None]