From f5ae27da4f542670560a4ecc0373d7001366b496 Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Fri, 27 Aug 2010 18:16:09 -0400 Subject: Fix some documentation typos. --- sleekxmpp/xmlstream/handler/callback.py | 2 +- sleekxmpp/xmlstream/handler/waiter.py | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'sleekxmpp/xmlstream') diff --git a/sleekxmpp/xmlstream/handler/callback.py b/sleekxmpp/xmlstream/handler/callback.py index 04a4eeda..f0a72853 100644 --- a/sleekxmpp/xmlstream/handler/callback.py +++ b/sleekxmpp/xmlstream/handler/callback.py @@ -38,7 +38,7 @@ class Callback(BaseHandler): name -- The name of the handler. matcher -- A matcher object for matching stanza objects. pointer -- The function to execute during callback. - threaded -- DEPRECATED. Remains only for backwards compatibility. + thread -- DEPRECATED. Remains only for backwards compatibility. once -- Indicates if the handler should be used only once. Defaults to False. instream -- Indicates if the callback should be executed diff --git a/sleekxmpp/xmlstream/handler/waiter.py b/sleekxmpp/xmlstream/handler/waiter.py index 0e5206b2..12827d3b 100644 --- a/sleekxmpp/xmlstream/handler/waiter.py +++ b/sleekxmpp/xmlstream/handler/waiter.py @@ -33,6 +33,14 @@ class Waiter(BaseHandler): """ def __init__(self, name, matcher, stream=None): + """ + Create a new Waiter. + + Arguments: + name -- The name of the waiter. + matcher -- A matcher object to detect the desired stanza. + stream -- Optional XMLStream instance to monitor. + """ BaseHandler.__init__(self, name, matcher) self._payload = queue.Queue() -- cgit v1.2.3