Ticket #20019: patch.txt
File patch.txt, 464 bytes (added by , 12 years ago) |
---|
Line | |
---|---|
1 | diff --git a/django/http/request.py b/django/http/request.py |
2 | index 2c19e4e..4a9cf4c 100644 |
3 | --- a/django/http/request.py |
4 | +++ b/django/http/request.py |
5 | @@ -38,6 +38,7 @@ class HttpRequest(object): |
6 | # The encoding used in GET/POST dicts. None means use default setting. |
7 | _encoding = None |
8 | _upload_handlers = [] |
9 | + resolver_match = None |
10 | |
11 | def __init__(self): |
12 | self.GET, self.POST, self.COOKIES, self.META, self.FILES = {}, {}, {}, |