You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
allow mixed string type inputs to misc urllib.parse.* functions
...eg urlparse, urlunparse, urlsplit, urlunsplit, urljoin, urldefrag, and parse_qsl.
fixes#273.
the original bug result in this kind of exception:
```
Traceback (most recent call last):
...
File ".../future/backports/urllib/parse.py", line 387, in urlunparse
_coerce_args(*components))
File ".../future/backports/urllib/parse.py", line 115, in _coerce_args
raise TypeError("Cannot mix str and non-str arguments")
TypeError: Cannot mix str and non-str arguments
```
0 commit comments