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


Python EventSocket._error_msg方法代碼示例

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


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

示例1: test_handle_error_no_handler_and_logger_and_err_msg

# 需要導入模塊: from eventsocket import EventSocket [as 別名]
# 或者: from eventsocket.EventSocket import _error_msg [as 別名]
  def test_handle_error_no_handler_and_logger_and_err_msg(self):
    sock = EventSocket()
    sock._logger = mock()
    sock._error_msg = 'isanerror'

    expect(sock._logger.error).args( 'unhandled error isanerror', exc_info=True )

    sock._handle_error( 'exception' )
開發者ID:agoragames,項目名稱:py-eventsocket,代碼行數:10,代碼來源:evented_socket_test.py

示例2: test_handle_error_with_handler_and_err_msg

# 需要導入模塊: from eventsocket import EventSocket [as 別名]
# 或者: from eventsocket.EventSocket import _error_msg [as 別名]
  def test_handle_error_with_handler_and_err_msg(self):
    sock = EventSocket()
    sock._parent_error_cb = mock()
    sock._error_msg = 'isanerror'

    expect(sock._parent_error_cb).args( sock, 'isanerror', 'exception' )

    sock._handle_error( 'exception' )
開發者ID:agoragames,項目名稱:py-eventsocket,代碼行數:10,代碼來源:evented_socket_test.py

示例3: test_protected_cb_when_an_error

# 需要導入模塊: from eventsocket import EventSocket [as 別名]
# 或者: from eventsocket.EventSocket import _error_msg [as 別名]
  def test_protected_cb_when_an_error(self):
    sock = EventSocket()
    #mock( sock, '_handle_error' )
    cb = mock()
    sock._error_msg = 'it broked'

    exc = RuntimeError('fale')
    expect( cb ).args( 'arg1', 'arg2', arg3='foo' ).raises( exc )
    expect( sock._handle_error ).args( exc )

    assert_equals( None,
      sock._protected_cb( cb, 'arg1', 'arg2', arg3='foo' ) )
    assert_equals( None, sock._error_msg )
開發者ID:agoragames,項目名稱:py-eventsocket,代碼行數:15,代碼來源:evented_socket_test.py


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