Repository URL to install this package:
|
Version:
1.3.0 ▾
|
simplekml
/
makeunicode.py
|
|---|
"""
Obtained from http://python3porting.com/noconv.html enable unicode support
in python 2 and 3.
"""
import sys
if sys.version < '3':
import codecs
def u(x):
return codecs.unicode_escape_decode(x)[0]
else:
def u(x):
return x