Lines Matching defs:last
10 >>> resp, count, first, last, name = s.group('comp.lang.python')
11 >>> print('Group', name, 'has', count, 'articles, range', first, 'to', last)
13 >>> resp, subs = s.xhdr('subject', '{0}-{1}'.format(first, last))
163 ['group', 'last', 'first', 'flag'])
579 # Parse lines into "group last first flag"
634 - list: list of (group, last, first, flag) (strings)
690 - last: last article number
697 count = first = last = 0
704 last = words[3]
707 return resp, int(count), int(first), int(last), name
752 def last(self):
1075 resp, count, first, last, name = s.group(args.group)
1076 print('Group', name, 'has', count, 'articles, range', first, 'to', last)
1083 first = str(int(last) - args.nb_articles + 1)
1084 resp, overviews = s.xover(first, last)