Home | History | Annotate | Download | only in python2.7

Lines Matching defs:last

7 >>> resp, count, first, last, name = s.group('comp.lang.python')
8 >>> print 'Group', name, 'has', count, 'articles, range', first, 'to', last
10 >>> resp, subs = s.xhdr('subject', first + '-' + last)
291 - list: list of (group, last, first, flag) (strings)"""
295 # Parse lines into "group last first flag"
342 - last: last article number (string)
349 count = first = last = 0
356 last = words[3]
359 return resp, count, first, last, name
369 """Internal: parse the response of a STAT, NEXT or LAST command."""
383 """Internal: process a STAT, NEXT or LAST command."""
401 def last(self):
402 """Process a LAST command. No arguments. Return as for STAT."""
403 return self.statcmd('LAST')
619 resp, count, first, last, name = s.group('comp.lang.python')
621 print 'Group', name, 'has', count, 'articles, range', first, 'to', last
622 resp, subs = s.xhdr('subject', first + '-' + last)