linkchecker/linkcheck/parser
Chris Mayo 646e138166 Pass encoding when unquoting
Else non-UTF-8 codes are misinterpreted:

>>> from urllib import parse
>>> parse.unquote("%FF")
'�'
>>> parse.unquote("%FF", "latin1")
'ÿ'
2019-10-05 19:38:57 +01:00
..
__init__.py Pass encoding when unquoting 2019-10-05 19:38:57 +01:00
sitemap.py Fix XmlTagUrlParser and make Python 3 compatible 2019-10-28 19:20:05 +00:00