Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2019-11-27 01:07:48 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-11-27 01:07:48 +0300
commitdc337d8c124047863696057a757f6882cdade6fc (patch)
tree30814404b3cb2041e11a02b8bde1c9ec4e376949 /nbxmpp/structs.py
parentf28ff1dfa193c458ff9d13f3d743ae971fc05b11 (diff)
Register: Add change_password()
Diffstat (limited to 'nbxmpp/structs.py')
-rw-r--r--nbxmpp/structs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/nbxmpp/structs.py b/nbxmpp/structs.py
index ffe70db..52691c3 100644
--- a/nbxmpp/structs.py
+++ b/nbxmpp/structs.py
@@ -133,6 +133,8 @@ SecurityLabel = namedtuple('SecurityLabel', 'displaymarking')
RegisterData = namedtuple('RegisterData', 'instructions form fields_form oob_url bob_data')
+ChangePasswordResult = namedtuple('ChangePasswordResult', 'successful form')
+ChangePasswordResult.__new__.__defaults__ = (None,)
class DiscoInfo(namedtuple('DiscoInfo', 'stanza identities features dataforms timestamp')):