From e18354ae0e068d6e95ea13567e75da4f0c6c03eb Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Mon, 18 Oct 2010 09:06:54 -0400 Subject: Continue converting to underscored names. --- sleekxmpp/xmlstream/handler/base.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'sleekxmpp/xmlstream/handler/base.py') diff --git a/sleekxmpp/xmlstream/handler/base.py b/sleekxmpp/xmlstream/handler/base.py index 3ae82a89..9c704ec6 100644 --- a/sleekxmpp/xmlstream/handler/base.py +++ b/sleekxmpp/xmlstream/handler/base.py @@ -25,10 +25,10 @@ class BaseHandler(object): stream -- The stream this handler is assigned to. Methods: - match -- Compare a stanza with the handler's matcher. - prerun -- Handler execution during stream processing. - run -- Handler execution during the main event loop. - checkDelete -- Indicate if the handler may be removed from use. + match -- Compare a stanza with the handler's matcher. + prerun -- Handler execution during stream processing. + run -- Handler execution during the main event loop. + check_delete -- Indicate if the handler may be removed from use. """ def __init__(self, name, matcher, stream=None): @@ -42,6 +42,8 @@ class BaseHandler(object): this handler. stream -- The XMLStream instance the handler should monitor. """ + self.checkDelete = self.check_delete + self.name = name self.stream = stream self._destroy = False @@ -79,7 +81,7 @@ class BaseHandler(object): """ self._payload = payload - def checkDelete(self): + def check_delete(self): """ Check if the handler should be removed from the list of stream handlers. -- cgit v1.2.3