minor packaging fixes and bump to 0.4.21

This commit is contained in:
Nick Sweeting 2020-11-23 17:28:45 -05:00
parent 83693a5c03
commit 02551c0152
6 changed files with 23 additions and 22 deletions

View file

@ -37,9 +37,9 @@ __all__ = ["encode", "decode", "normalize"]
if PY3:
string_types = str,
string_types = (str,)
else:
string_types = basestring,
string_types = (basestring,) # noqa
# The encoded symbol space does not include I, L, O or U
symbols = '0123456789ABCDEFGHJKMNPQRSTVWXYZ'