OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:art_num
(Results
1 - 2
of
2
) sorted by null
/external/python/cpython3/Lib/test/
test_nntplib.py
129
art_num
, art_dict = lines[0]
130
self.assertGreaterEqual(
art_num
, last - 5)
131
self.assertLessEqual(
art_num
, last)
141
art_num
, art_dict = lines[0]
145
art_num
, art_dict = lines[-1]
147
self.assertGreaterEqual(
art_num
, start)
148
self.assertLessEqual(
art_num
, last)
159
def check_article_resp(self, resp, article,
art_num
=None):
161
if
art_num
is not None:
162
self.assertEqual(article.number,
art_num
)
[
all
...]
/external/python/cpython3/Lib/
nntplib.py
693
art_num
= int(words[1])
695
return resp,
art_num
, message_id
708
-
art_num
: the article number
727
resp,
art_num
, message_id = self._statparse(resp)
728
return resp, ArticleInfo(
art_num
, message_id, lines)
[
all
...]
Completed in 1417 milliseconds