Home
last modified time | relevance | path

Searched refs:group_pattern (Results 1 – 5 of 5) sorted by relevance

/external/openssh/
Dgroupaccess.c101 ga_match_pattern_list(const char *group_pattern) in ga_match_pattern_list() argument
107 group_pattern)) { in ga_match_pattern_list()
/external/python/cpython3/Lib/
Dnntplib.py625 def list(self, group_pattern=None, *, file=None): argument
633 if group_pattern is not None:
634 command = 'LIST ACTIVE ' + group_pattern
640 def _getdescriptions(self, group_pattern, return_all): argument
643 resp, lines = self._longcmdstring('LIST NEWSGROUPS ' + group_pattern)
648 resp, lines = self._longcmdstring('XGTITLE ' + group_pattern)
676 def descriptions(self, group_pattern): argument
678 return self._getdescriptions(group_pattern, True)
/external/python/cpython2/Lib/
Dnntplib.py327 def descriptions(self, group_pattern): argument
331 resp, raw_lines = self.longcmd('LIST NEWSGROUPS ' + group_pattern)
336 resp, raw_lines = self.longcmd('XGTITLE ' + group_pattern)
/external/python/cpython3/Doc/library/
Dnntplib.rst302 .. method:: NNTP.list(group_pattern=None, *, file=None)
307 pattern string *group_pattern*. Each tuple has the form
322 This command can return very large results, especially if *group_pattern*
327 *group_pattern* was added.
/external/python/cpython3/Misc/
DHISTORY11629 - Issue #10283: Add a ``group_pattern`` argument to NNTP.list().