diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2014-08-16 22:37:29 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-09-01 02:42:45 +0200 |
commit | df68bb48961574436c1ffc2463a31cd7d8227606 (patch) | |
tree | b8cf94afe4f18b3fe75baaf63a1c9c0c5c1b314b /examples/custom_stanzas/custom_stanza_provider.py | |
parent | 815e647c97c0b9a25d177bb698b4f737340987b5 (diff) | |
download | slixmpp-df68bb48961574436c1ffc2463a31cd7d8227606.tar.gz slixmpp-df68bb48961574436c1ffc2463a31cd7d8227606.tar.bz2 slixmpp-df68bb48961574436c1ffc2463a31cd7d8227606.tar.xz slixmpp-df68bb48961574436c1ffc2463a31cd7d8227606.zip |
Remove raw_input usage and other python2 support in examples
Diffstat (limited to 'examples/custom_stanzas/custom_stanza_provider.py')
-rwxr-xr-x | examples/custom_stanzas/custom_stanza_provider.py | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/examples/custom_stanzas/custom_stanza_provider.py b/examples/custom_stanzas/custom_stanza_provider.py index 0356b973..5782b671 100755 --- a/examples/custom_stanzas/custom_stanza_provider.py +++ b/examples/custom_stanzas/custom_stanza_provider.py @@ -9,7 +9,6 @@ See the file LICENSE for copying permission. """ -import sys import logging import getpass from optparse import OptionParser @@ -23,16 +22,6 @@ from slixmpp.xmlstream.handler import Callback from slixmpp.xmlstream.matcher import StanzaPath from stanza import Action -# Python versions before 3.0 do not use UTF-8 encoding -# by default. To ensure that Unicode is handled properly -# throughout Slixmpp, we will set the default encoding -# ourselves to UTF-8. -if sys.version_info < (3, 0): - from slixmpp.util.misc_ops import setdefaultencoding - setdefaultencoding('utf8') -else: - raw_input = input - class ActionBot(slixmpp.ClientXMPP): @@ -138,7 +127,7 @@ if __name__ == '__main__': format='%(levelname)-8s %(message)s') if opts.jid is None: - opts.jid = raw_input("Username: ") + opts.jid = input("Username: ") if opts.password is None: opts.password = getpass.getpass("Password: ") |