Lines Matching refs:post
526 """Flag that the client is expected to post a request body"""
1204 # First the prepared post with CRLF endings
1205 post = self.sample_post
1206 func_args = args + (file_factory(post),)
1210 # Then the same post with "normal" line endings - they should be
1211 # converted by NNTP.post and NNTP.ihave.
1212 post = self.sample_post.replace(b"\r\n", b"\n")
1213 func_args = args + (file_factory(post),)
1241 self.check_post_ihave(self.server.post, "240 Article received OK")
1244 self.server.post(self.sample_post)