From c66a4d4097a249efc029b761d6150378a54bf702 Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 24 Feb 2015 18:58:40 +0100 Subject: Update the documentation and examples - update most of the examples with slixmpp - change the help channels pointed out in the doc - add a page listing differences from slixmpp and how to use asyncio nicely with slixmpp - fix some in-code rst documentation --- slixmpp/xmlstream/stanzabase.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'slixmpp/xmlstream/stanzabase.py') diff --git a/slixmpp/xmlstream/stanzabase.py b/slixmpp/xmlstream/stanzabase.py index 392fd55b..10c29782 100644 --- a/slixmpp/xmlstream/stanzabase.py +++ b/slixmpp/xmlstream/stanzabase.py @@ -1474,7 +1474,7 @@ class StanzaBase(ElementBase): Only type values contained in :attr:`types` are accepted. - :param string value: One of the values contained in :attr:`types` + :param str value: One of the values contained in :attr:`types` """ if value in self.types: self.xml.attrib['type'] = value @@ -1499,8 +1499,8 @@ class StanzaBase(ElementBase): def set_from(self, value): """Set the 'from' attribute of the stanza. - Arguments: - from -- A string or JID object representing the sender's JID. + :param from: A string or JID object representing the sender's JID. + :type from: str or :class:`.JID` """ return self._set_attr('from', str(value)) -- cgit v1.2.3