Changeset 213:7b89b9208b88 for wokkel
- Timestamp:
- Oct 3, 2016, 10:13:49 AM (6 years ago)
- Branch:
- default
- Location:
- wokkel
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wokkel/formats.py
r209 r213 1 # -*- test-case-name: wokkel.test.test_formats -*- 2 # 1 3 # Copyright (c) Ralph Meijer. 2 4 # See LICENSE for details. 3 5 6 """ 7 Generic payload formats. 8 """ 9 4 10 from __future__ import division, absolute_import 11 12 from twisted.python.compat import unicode 5 13 6 14 NS_MOOD = 'http://jabber.org/protocol/mood' … … 22 30 self.value = value 23 31 self.text = text 32 24 33 25 34 def fromXml(self, element): … … 57 66 58 67 fromXml = classmethod(fromXml) 68 69 59 70 60 71 class Tune:
Note: See TracChangeset
for help on using the changeset viewer.