1
0
mirror of https://github.com/django/django.git synced 2025-10-31 01:25:32 +00:00

[2.0.x] Fixed #28837 -- Fixed test client crash if an exception with more than one arg is raised.

Also removed usage of the problematic pattern elsewhere.

Regression in 6e55e1d88a.

Backport of 746caf3ef8 from master
This commit is contained in:
Nicolas Delaby
2017-11-23 17:18:03 +01:00
committed by Tim Graham
parent aba31aa86b
commit ae4132a940
6 changed files with 21 additions and 8 deletions

View File

@@ -331,3 +331,12 @@ def django_project_redirect(request):
def upload_view(request):
"""Prints keys of request.FILES to the response."""
return HttpResponse(', '.join(request.FILES))
class TwoArgException(Exception):
def __init__(self, one, two):
pass
def two_arg_exception(request):
raise TwoArgException('one', 'two')