Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[207] Added copy of dict - RuntimeError: dictionary keys changed duri… #208

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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