added unicode-literals forward-compatibility module

This commit is contained in:
Daniel Hiepler 2016-04-12 17:24:57 +02:00
parent 0574044472
commit 5b7f8c9646
3 changed files with 9 additions and 0 deletions

3
bot.py
View File

@ -1,3 +1,6 @@
# use unicode encoding for all literals by default (for python2.x)
from __future__ import unicode_literals
__author__ = "Steffen Vogel"
__copyright__ = "Copyright 2015, Steffen Vogel"
__license__ = "GPLv3"

View File

@ -1,3 +1,6 @@
# use unicode encoding for all literals by default (for python2.x)
from __future__ import unicode_literals
__author__ = "Steffen Vogel"
__copyright__ = "Copyright 2015, Steffen Vogel"
__license__ = "GPLv3"

View File

@ -1,3 +1,6 @@
# use unicode encoding for all literals by default (for python2.x)
from __future__ import unicode_literals
import Queue
import threading