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


Python xmlrpclib.MultiCall方法代碼示例

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


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

示例1: test_multicall

# 需要導入模塊: import xmlrpclib [as 別名]
# 或者: from xmlrpclib import MultiCall [as 別名]
def test_multicall(self):
        try:
            p = xmlrpclib.ServerProxy(URL)
            multicall = xmlrpclib.MultiCall(p)
            multicall.add(2,3)
            multicall.pow(6,8)
            multicall.div(127,42)
            add_result, pow_result, div_result = multicall()
            self.assertEqual(add_result, 2+3)
            self.assertEqual(pow_result, 6**8)
            self.assertEqual(div_result, 127//42)
        except (xmlrpclib.ProtocolError, socket.error), e:
            # ignore failures due to non-blocking socket 'unavailable' errors
            if not is_unavailable_exception(e):
                # protocol error; provide additional information in test output
                self.fail("%s\n%s" % (e, getattr(e, "headers", ""))) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:18,代碼來源:test_xmlrpc.py

示例2: test_non_existing_multicall

# 需要導入模塊: import xmlrpclib [as 別名]
# 或者: from xmlrpclib import MultiCall [as 別名]
def test_non_existing_multicall(self):
        try:
            p = xmlrpclib.ServerProxy(URL)
            multicall = xmlrpclib.MultiCall(p)
            multicall.this_is_not_exists()
            result = multicall()

            # result.results contains;
            # [{'faultCode': 1, 'faultString': '<type \'exceptions.Exception\'>:'
            #   'method "this_is_not_exists" is not supported'>}]

            self.assertEqual(result.results[0]['faultCode'], 1)
            self.assertEqual(result.results[0]['faultString'],
                '<type \'exceptions.Exception\'>:method "this_is_not_exists" '
                'is not supported')
        except (xmlrpclib.ProtocolError, socket.error), e:
            # ignore failures due to non-blocking socket 'unavailable' errors
            if not is_unavailable_exception(e):
                # protocol error; provide additional information in test output
                self.fail("%s\n%s" % (e, getattr(e, "headers", ""))) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:22,代碼來源:test_xmlrpc.py


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