Files

12 lines
218 B
Python
Raw Permalink Normal View History

2019-10-20 13:16:49 +02:00
# -*- coding: utf-8 -*-
import sys
try: # pragma: nocover
from urllib.parse import quote
except: # pragma: nocover
from urllib import quote
PY3 = sys.version_info > (3, )
unicode = str if PY3 else unicode