Searched refs:longcmd (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython2/Lib/ |
D | nntplib.py | 270 def longcmd(self, line, file=None): member in NNTP 283 return self.longcmd('NEWGROUPS ' + date + ' ' + time, file) 295 return self.longcmd(cmd, file) 302 resp, list = self.longcmd('LIST', file) 331 resp, raw_lines = self.longcmd('LIST NEWSGROUPS ' + group_pattern) 336 resp, raw_lines = self.longcmd('XGTITLE ' + group_pattern) 375 return self.longcmd('HELP',file) 416 resp, list = self.longcmd(line, file) 470 resp, lines = self.longcmd('XHDR ' + hdr + ' ' + str, file) 487 resp, lines = self.longcmd('XOVER ' + start + '-' + end, file) [all …]
|