Fellow Report - January 6, 2018

2018-01-06 Thread Tim Graham
Triaged --- https://code.djangoproject.com/ticket/28975 - Skip automatic creation of postgis extension if it already exists (accepted) https://code.djangoproject.com/ticket/28980 - Make the autodetector validate the type of one-off default values (accepted) https://code.djangoproject.co

Re: QueryDict and ordering

2018-01-06 Thread Todor Velichkov
Is this what you are looking for? from django.http import QueryDict from collections import OrderedDict class OrderedQueryDict(QueryDict, OrderedDict): pass my_dict = OrderedQueryDict(request.META['QUERY_STRING']) print my_dict.items() On Friday, January 5, 2018 at 5:07:41 PM UTC+2, Ole