Merge remote-tracking branch 'refs/remotes/vnpy/master'

This commit is contained in:
msincenselee 2015-11-05 00:32:47 +08:00
commit 09646b6158

View File

@ -182,7 +182,7 @@ class EventEngine:
# 尝试获取该事件类型对应的处理函数列表,若无则忽略该次注销请求
try:
handlerList = self.handlers[type_]
handlerList = self.__handlers[type_]
# 如果该函数存在于列表中,则移除
if handler in handlerList:
@ -240,4 +240,4 @@ def test():
# 直接运行脚本可以进行测试
if __name__ == '__main__':
test()
test()