diff options
author | Lance Stout <lancestout@gmail.com> | 2011-05-31 10:59:14 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-05-31 10:59:14 -0700 |
commit | 5ed27bf5f65f03e14da24a60e261a175074cb7aa (patch) | |
tree | c79db47352f003b51459016df699032b51712292 /sleekxmpp/xmlstream/stanzabase.py | |
parent | 62bdaab7c7fc5a35c83ac9f3b0bf5b393f0eb925 (diff) | |
parent | a81162edd2434756e21d7f9a79d71d770a43db7b (diff) | |
download | slixmpp-5ed27bf5f65f03e14da24a60e261a175074cb7aa.tar.gz slixmpp-5ed27bf5f65f03e14da24a60e261a175074cb7aa.tar.bz2 slixmpp-5ed27bf5f65f03e14da24a60e261a175074cb7aa.tar.xz slixmpp-5ed27bf5f65f03e14da24a60e261a175074cb7aa.zip |
Merge branch 'develop' into roster
Diffstat (limited to 'sleekxmpp/xmlstream/stanzabase.py')
-rw-r--r-- | sleekxmpp/xmlstream/stanzabase.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sleekxmpp/xmlstream/stanzabase.py b/sleekxmpp/xmlstream/stanzabase.py index b8a7ceaa..d9a4636a 100644 --- a/sleekxmpp/xmlstream/stanzabase.py +++ b/sleekxmpp/xmlstream/stanzabase.py @@ -1253,9 +1253,15 @@ class StanzaBase(ElementBase): log.exception('Error handling {%s}%s stanza' % (self.namespace, self.name)) - def send(self): - """Queue the stanza to be sent on the XML stream.""" - self.stream.sendRaw(self.__str__()) + def send(self, now=False): + """ + Queue the stanza to be sent on the XML stream. + Arguments: + now -- Indicates if the queue should be skipped and the + stanza sent immediately. Useful for stream + initialization. Defaults to False. + """ + self.stream.send_raw(self.__str__(), now=now) def __copy__(self): """ |