Opened 11 days ago
Last modified 11 days ago
#36278 closed New feature
MultiValueDict should use sentinel for default values — at Initial Version
Description ¶
MultiValueDict has many methods that has a 'default' parameter, but sets the default to None. fx:
https://github.com/django/django/blob/main/django/utils/datastructures.py#L147
This makes
mvdict.getlist('key', None)
return [], instead of the expected None.
Note:
See TracTickets
for help on using tickets.