本文整理匯總了Python中nntplib.NNTPDataError方法的典型用法代碼示例。如果您正苦於以下問題:Python nntplib.NNTPDataError方法的具體用法?Python nntplib.NNTPDataError怎麽用?Python nntplib.NNTPDataError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類nntplib
的用法示例。
在下文中一共展示了nntplib.NNTPDataError方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_too_long_line
# 需要導入模塊: import nntplib [as 別名]
# 或者: from nntplib import NNTPDataError [as 別名]
def test_too_long_line(self):
self.assertRaises(nntplib.NNTPDataError,
nntplib.NNTP, 'localhost', self.port)
示例2: test_too_long_lines
# 需要導入模塊: import nntplib [as 別名]
# 或者: from nntplib import NNTPDataError [as 別名]
def test_too_long_lines(self):
dt = datetime.datetime(2010, 1, 1, 9, 0, 0)
self.assertRaises(nntplib.NNTPDataError,
self.server.newnews, "comp.lang.python", dt)
示例3: test_module_all_attribute
# 需要導入模塊: import nntplib [as 別名]
# 或者: from nntplib import NNTPDataError [as 別名]
def test_module_all_attribute(self):
self.assertTrue(hasattr(nntplib, '__all__'))
target_api = ['NNTP', 'NNTPError', 'NNTPReplyError',
'NNTPTemporaryError', 'NNTPPermanentError',
'NNTPProtocolError', 'NNTPDataError', 'decode_header']
if ssl is not None:
target_api.append('NNTP_SSL')
self.assertEqual(set(nntplib.__all__), set(target_api))