CodyKochmann
7/18/2017 - 4:20 PM

get the unicode function working on both python 2 and 3 so you can freely use it in universal code

get the unicode function working on both python 2 and 3 so you can freely use it in universal code

# adds the unicode function to python 3 so 
# you can freely use it in universal code
# by: Cody Kochmann
if sys.version_info >= (3, 0):
    def unicode(*a, **k):
        return str(*a, **k)