File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -441,18 +441,18 @@ def _odict_keys_reduce(obj):
441
441
# Safer not to ship the full dict as sending the rest might
442
442
# be unintended and could potentially cause leaking of
443
443
# sensitive information
444
- return _make_dict_keys , (list (obj ), True )
444
+ return _make_dict_keys , (list (obj ), is_ordered = True )
445
445
446
446
447
447
def _odict_values_reduce (obj ):
448
448
# Safer not to ship the full dict as sending the rest might
449
449
# be unintended and could potentially cause leaking of
450
450
# sensitive information
451
- return _make_dict_values , (list (obj ), True )
451
+ return _make_dict_values , (list (obj ), is_ordered = True )
452
452
453
453
454
454
def _odict_items_reduce (obj ):
455
- return _make_dict_items , (dict (obj ), True )
455
+ return _make_dict_items , (dict (obj ), is_ordered = True )
456
456
457
457
458
458
# COLLECTIONS OF OBJECTS STATE SETTERS
You can’t perform that action at this time.
0 commit comments