Skip to content
This repository was archived by the owner on Aug 8, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion rauth/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ def absolute_url(url):
def parse_utf8_qsl(s):
d = dict(parse_qsl(s))

for k, v in d.items(): # pragma: no cover
copy_d = dict(d);

for k, v in copy_d.items(): # pragma: no cover
if not isinstance(k, bytes) and not isinstance(v, bytes):
# skip this iteration if we have no keys or values to update
continue
Expand All @@ -36,6 +38,7 @@ def parse_utf8_qsl(s):
return d



def get_sorted_params(params):
def sorting_gen():
for k in sorted(params.keys()):
Expand Down