當前位置: 首頁>>代碼示例>>Python>>正文


Python ftplib.error_reply方法代碼示例

本文整理匯總了Python中ftplib.error_reply方法的典型用法代碼示例。如果您正苦於以下問題:Python ftplib.error_reply方法的具體用法?Python ftplib.error_reply怎麽用?Python ftplib.error_reply使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ftplib的用法示例。


在下文中一共展示了ftplib.error_reply方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_all_errors

# 需要導入模塊: import ftplib [as 別名]
# 或者: from ftplib import error_reply [as 別名]
def test_all_errors(self):
        exceptions = (ftplib.error_reply, ftplib.error_temp, ftplib.error_perm,
                      ftplib.error_proto, ftplib.Error, IOError, EOFError)
        for x in exceptions:
            try:
                raise x('exception not included in all_errors set')
            except ftplib.all_errors:
                pass 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:10,代碼來源:test_ftplib.py

示例2: test_voidcmd

# 需要導入模塊: import ftplib [as 別名]
# 或者: from ftplib import error_reply [as 別名]
def test_voidcmd(self):
        self.client.voidcmd('echo 200')
        self.client.voidcmd('echo 299')
        self.assertRaises(ftplib.error_reply, self.client.voidcmd, 'echo 199')
        self.assertRaises(ftplib.error_reply, self.client.voidcmd, 'echo 300') 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:7,代碼來源:test_ftplib.py

示例3: test_rename

# 需要導入模塊: import ftplib [as 別名]
# 或者: from ftplib import error_reply [as 別名]
def test_rename(self):
        self.client.rename('a', 'b')
        self.server.handler_instance.next_response = '200'
        self.assertRaises(ftplib.error_reply, self.client.rename, 'a', 'b') 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:6,代碼來源:test_ftplib.py

示例4: test_delete

# 需要導入模塊: import ftplib [as 別名]
# 或者: from ftplib import error_reply [as 別名]
def test_delete(self):
        self.client.delete('foo')
        self.server.handler_instance.next_response = '199'
        self.assertRaises(ftplib.error_reply, self.client.delete, 'foo') 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:6,代碼來源:test_ftplib.py

示例5: test_rename

# 需要導入模塊: import ftplib [as 別名]
# 或者: from ftplib import error_reply [as 別名]
def test_rename(self):
        self.client.rename('a', 'b')
        self.server.handler.next_response = '200'
        self.assertRaises(ftplib.error_reply, self.client.rename, 'a', 'b') 
開發者ID:dxwu,項目名稱:BinderFilter,代碼行數:6,代碼來源:test_ftplib.py

示例6: test_delete

# 需要導入模塊: import ftplib [as 別名]
# 或者: from ftplib import error_reply [as 別名]
def test_delete(self):
        self.client.delete('foo')
        self.server.handler.next_response = '199'
        self.assertRaises(ftplib.error_reply, self.client.delete, 'foo') 
開發者ID:dxwu,項目名稱:BinderFilter,代碼行數:6,代碼來源:test_ftplib.py

示例7: test_all_errors

# 需要導入模塊: import ftplib [as 別名]
# 或者: from ftplib import error_reply [as 別名]
def test_all_errors(self):
        exceptions = (ftplib.error_reply, ftplib.error_temp, ftplib.error_perm,
                      ftplib.error_proto, ftplib.Error, OSError, EOFError)
        for x in exceptions:
            try:
                raise x('exception not included in all_errors set')
            except ftplib.all_errors:
                pass 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:10,代碼來源:test_ftplib.py

示例8: test_parse257

# 需要導入模塊: import ftplib [as 別名]
# 或者: from ftplib import error_reply [as 別名]
def test_parse257(self):
        self.assertEqual(ftplib.parse257('257 "/foo/bar"'), '/foo/bar')
        self.assertEqual(ftplib.parse257('257 "/foo/bar" created'), '/foo/bar')
        self.assertEqual(ftplib.parse257('257 ""'), '')
        self.assertEqual(ftplib.parse257('257 "" created'), '')
        self.assertRaises(ftplib.error_reply, ftplib.parse257, '250 "/foo/bar"')
        # The 257 response is supposed to include the directory
        # name and in case it contains embedded double-quotes
        # they must be doubled (see RFC-959, chapter 7, appendix 2).
        self.assertEqual(ftplib.parse257('257 "/foo/b""ar"'), '/foo/b"ar')
        self.assertEqual(ftplib.parse257('257 "/foo/b""ar" created'), '/foo/b"ar') 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:13,代碼來源:test_ftplib.py

示例9: test_all_errors

# 需要導入模塊: import ftplib [as 別名]
# 或者: from ftplib import error_reply [as 別名]
def test_all_errors(self):
        exceptions = (ftplib.error_reply, ftplib.error_temp, ftplib.error_perm,
                      ftplib.error_proto, ftplib.Error, OSError,
                      EOFError)
        for x in exceptions:
            try:
                raise x('exception not included in all_errors set')
            except ftplib.all_errors:
                pass 
開發者ID:IronLanguages,項目名稱:ironpython3,代碼行數:11,代碼來源:test_ftplib.py


注:本文中的ftplib.error_reply方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。