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


Python Event.clone方法代碼示例

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


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

示例1: test_event_clone

# 需要導入模塊: from wishbone.event import Event [as 別名]
# 或者: from wishbone.event.Event import clone [as 別名]
def test_event_clone():

    a = Event({"one": 1, "two": 2})
    b = a.clone()

    assert id(a.data) != id(b.data)
    assert not a.data["cloned"]
    assert b.data["cloned"]
    assert b.data["uuid_previous"][0] == a.data["uuid"]
開發者ID:smetj,項目名稱:wishbone,代碼行數:11,代碼來源:test_event.py

示例2: handleMessage

# 需要導入模塊: from wishbone.event import Event [as 別名]
# 或者: from wishbone.event.Event import clone [as 別名]
    def handleMessage(self, message):

        e = Event("\n".join(message.arguments))
        e.set(message.type, '@tmp.%s.type' % (self.name))
        e.set(message.source, '@tmp.%s.source' % (self.name))

        if message.type == "pubmsg":
            e.set(message.target, '@tmp.%s.channel' % (self.name))
            self.submit(e, getattr(self.pool.queue, message.target.strip('#').lower()))
        elif message.type == "privmsg":
            self.submit(e, getattr(self.pool.queue, "priv__%s" % (self.kwargs.nickname)))

        self.submit(e.clone(), self.pool.queue.outbox)
開發者ID:smetj,項目名稱:wishbone-input-irc,代碼行數:15,代碼來源:wishbone_input_irc.py


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