Lines Matching refs:group
10 >>> resp, count, first, last, name = s.group('comp.lang.python')
44 # - NNTP.descriptions() returns a dict mapping group names to descriptions
163 ['group', 'last', 'first', 'flag'])
331 reader-specific commands, such as `group'. If you get
579 # Parse lines into "group last first flag"
612 def newnews(self, group, date, *, file=None):
614 - group: group name or '*'
625 cmd = 'NEWNEWS {0} {1} {2}'.format(group, date_str, time_str)
634 - list: list of (group, last, first, flag) (strings)
644 line_pat = re.compile('^(?P<group>[^ \t]+)[ \t]+(.*)$')
656 name, desc = match.group(1, 2)
666 def description(self, group):
667 """Get a description for a single group. If more than one
668 group matches ('group' is a pattern), return the first. If no
669 group matches, return an empty string.
675 NOTE: This neither checks for a wildcard in 'group' nor does
676 it check whether the group actually exists."""
677 return self._getdescriptions(group, False)
683 def group(self, name):
685 - group: the group name
691 - name: the group name
823 return m.group(1, 2) if m else line
1050 parser.add_argument('-g', '--group', default='gmane.comp.python.general',
1051 help='group to fetch messages from (default: %(default)s)')
1075 resp, count, first, last, name = s.group(args.group)