Negligible spacing fixes to comments in django/http/__init__.py
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17221 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
81bf5e3950
commit
bfb4ed1425
|
@ -21,7 +21,7 @@ except ImportError:
|
||||||
# Python 2.6 and greater
|
# Python 2.6 and greater
|
||||||
from urlparse import parse_qsl
|
from urlparse import parse_qsl
|
||||||
except ImportError:
|
except ImportError:
|
||||||
# Python 2.5. Works on Python 2.6 but raises PendingDeprecationWarning
|
# Python 2.5. Works on Python 2.6 but raises PendingDeprecationWarning
|
||||||
from cgi import parse_qsl
|
from cgi import parse_qsl
|
||||||
|
|
||||||
import Cookie
|
import Cookie
|
||||||
|
@ -71,7 +71,7 @@ else:
|
||||||
|
|
||||||
# SimpleCookie already does the hard work of encoding and decoding.
|
# SimpleCookie already does the hard work of encoding and decoding.
|
||||||
# It uses octal sequences like '\\012' for newline etc.
|
# It uses octal sequences like '\\012' for newline etc.
|
||||||
# and non-ASCII chars. We just make use of this mechanism, to
|
# and non-ASCII chars. We just make use of this mechanism, to
|
||||||
# avoid introducing two encoding schemes which would be confusing
|
# avoid introducing two encoding schemes which would be confusing
|
||||||
# and especially awkward for javascript.
|
# and especially awkward for javascript.
|
||||||
|
|
||||||
|
@ -353,11 +353,11 @@ class HttpRequest(object):
|
||||||
try:
|
try:
|
||||||
self._post, self._files = self.parse_file_upload(self.META, data)
|
self._post, self._files = self.parse_file_upload(self.META, data)
|
||||||
except:
|
except:
|
||||||
# An error occured while parsing POST data. Since when
|
# An error occured while parsing POST data. Since when
|
||||||
# formatting the error the request handler might access
|
# formatting the error the request handler might access
|
||||||
# self.POST, set self._post and self._file to prevent
|
# self.POST, set self._post and self._file to prevent
|
||||||
# attempts to parse POST data again.
|
# attempts to parse POST data again.
|
||||||
# Mark that an error occured. This allows self.__repr__ to
|
# Mark that an error occured. This allows self.__repr__ to
|
||||||
# be explicit about it instead of simply representing an
|
# be explicit about it instead of simply representing an
|
||||||
# empty POST
|
# empty POST
|
||||||
self._mark_post_parse_error()
|
self._mark_post_parse_error()
|
||||||
|
@ -559,11 +559,11 @@ class HttpResponse(object):
|
||||||
content_type=None):
|
content_type=None):
|
||||||
# _headers is a mapping of the lower-case name to the original case of
|
# _headers is a mapping of the lower-case name to the original case of
|
||||||
# the header (required for working with legacy systems) and the header
|
# the header (required for working with legacy systems) and the header
|
||||||
# value. Both the name of the header and its value are ASCII strings.
|
# value. Both the name of the header and its value are ASCII strings.
|
||||||
self._headers = {}
|
self._headers = {}
|
||||||
self._charset = settings.DEFAULT_CHARSET
|
self._charset = settings.DEFAULT_CHARSET
|
||||||
if mimetype:
|
if mimetype: # For backwards compatibility.
|
||||||
content_type = mimetype # For backwards compatibility
|
content_type = mimetype
|
||||||
if not content_type:
|
if not content_type:
|
||||||
content_type = "%s; charset=%s" % (settings.DEFAULT_CONTENT_TYPE,
|
content_type = "%s; charset=%s" % (settings.DEFAULT_CONTENT_TYPE,
|
||||||
self._charset)
|
self._charset)
|
||||||
|
|
Loading…
Reference in New Issue