diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-07-26 12:40:50 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-07-26 12:40:50 (GMT) |
commit | cc0f93233a1715ae8358fb0fa35b1ab8786bade3 (patch) | |
tree | 80a7580addf8ef881b214ecfec12a701077ce803 /Lib/nntplib.py | |
parent | 32d0c1b458bbdda8d8895f5b5bedfb4644f839e7 (diff) | |
download | cpython-cc0f93233a1715ae8358fb0fa35b1ab8786bade3.zip cpython-cc0f93233a1715ae8358fb0fa35b1ab8786bade3.tar.gz cpython-cc0f93233a1715ae8358fb0fa35b1ab8786bade3.tar.bz2 |
Patch #605370: Add description[s] for RFC 2980 compliance.
Diffstat (limited to 'Lib/nntplib.py')
-rw-r--r-- | Lib/nntplib.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py index 83544b8..d0bd5ad 100644 --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -297,6 +297,42 @@ class NNTP: list[i] = tuple(list[i].split()) return resp, list + def description(self, group): + + """Get a description for a single group. If more than one + group matches ('group' is a pattern), return the first. If no + group matches, return an empty string. + + This elides the response code from the server, since it can + only be '215' or '285' (for xgtitle) anyway. If the response + code is needed, use the 'descriptions' method. + + NOTE: This neither checks for a wildcard in 'group' nor does + it check whether the group actually exists.""" + + resp, lines = self.descriptions(group) + if len(lines) == 0: + return "" + else: + return lines[0][1] + + def descriptions(self, group_pattern): + """Get descriptions for a range of groups.""" + line_pat = re.compile("^(?P<group>[^ \t]+)[ \t]+(.*)$") + # Try the more std (acc. to RFC2980) LIST NEWSGROUPS first + resp, raw_lines = self.longcmd('LIST NEWSGROUPS ' + group_pattern) + if resp[:3] != "215": + # Now the deprecated XGTITLE. This either raises an error + # or succeeds with the same output structure as LIST + # NEWSGROUPS. + resp, raw_lines = self.longcmd('XGTITLE ' + group_pattern) + lines = [] + for raw_line in raw_lines: + match = line_pat.search(raw_line.strip()) + if match: + lines.append(match.group(1, 2)) + return resp, lines + def group(self, name): """Process a GROUP command. Argument: - group: the group name |