1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Removed custom WSGIRequestHandler.get_environ

We probably historically customized it for good reasons, but
currently, the differences with upstream Python are not
significant any longer.
Also fixes #19075 for which a test has been added.
This commit is contained in:
Claude Paroz
2012-10-20 12:34:50 +02:00
parent 3084b1cfd6
commit 681550ca6d
4 changed files with 16 additions and 35 deletions

View File

@@ -14,4 +14,8 @@ def model_view(request):
def create_model_instance(request):
person = Person(name='emily')
person.save()
return HttpResponse('')
return HttpResponse('')
def environ_view(request):
return HttpResponse("\n".join(["%s: %r" % (k, v) for k, v in request.environ.items()]))