diff options
Diffstat (limited to 'django/http/__init__.py')
-rw-r--r-- | django/http/__init__.py | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py index ef15479983..0124022478 100644 --- a/django/http/__init__.py +++ b/django/http/__init__.py @@ -31,6 +31,7 @@ class HttpRequest(object): def __init__(self): self.GET, self.POST, self.COOKIES, self.META, self.FILES = {}, {}, {}, {}, {} self.path = '' + self.path_info = '' self.method = None def __repr__(self): @@ -38,17 +39,6 @@ class HttpRequest(object): (pformat(self.GET), pformat(self.POST), pformat(self.COOKIES), pformat(self.META)) - def __getitem__(self, key): - for d in (self.POST, self.GET): - if key in d: - return d[key] - raise KeyError, "%s not found in either POST or GET" % key - - def has_key(self, key): - return key in self.GET or key in self.POST - - __contains__ = has_key - def get_host(self): """Returns the HTTP host using the environment or request headers.""" # We try three options, in order of decreasing preference. @@ -442,3 +432,4 @@ def str_to_unicode(s, encoding): return unicode(s, encoding, 'replace') else: return s + |