Remove an unused compatibility function that was overriden by the same name lower in the same file.

This commit is contained in:
Dave Halter
2017-05-11 16:22:11 -04:00
parent 0b3590ce20
commit 0da875281b

View File

@@ -166,14 +166,6 @@ try:
except NameError:
unicode = str
if is_py3:
u = lambda s: s
else:
u = lambda s: s.decode('utf-8')
u.__doc__ = """
Decode a raw string into unicode object. Do nothing in Python 3.
"""
# exec function
if is_py3: