Commit 2bc91df2 authored by Benjamin Peterson's avatar Benjamin Peterson

remove 3.0 conditional

parent ac623cde
......@@ -30,11 +30,8 @@ from multiprocessing import util
#
#
if sys.version_info >= (3, 0):
def latin(s):
return s.encode('latin')
else:
latin = str
def latin(s):
return s.encode('latin')
#
# Constants
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment