mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Fixed #4040 -- Changed uses of has_key() to "in". Slight performance
improvement and forward-compatible with future Python releases. Patch from Gary Wilson. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5091 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -42,11 +42,11 @@ class ModPythonRequest(http.HttpRequest): | ||||
|  | ||||
|     def is_secure(self): | ||||
|         # Note: modpython 3.2.10+ has req.is_https(), but we need to support previous versions | ||||
|         return self._req.subprocess_env.has_key('HTTPS') and self._req.subprocess_env['HTTPS'] == 'on' | ||||
|         return 'HTTPS' in self._req.subprocess_env and self._req.subprocess_env['HTTPS'] == 'on' | ||||
|  | ||||
|     def _load_post_and_files(self): | ||||
|         "Populates self._post and self._files" | ||||
|         if self._req.headers_in.has_key('content-type') and self._req.headers_in['content-type'].startswith('multipart'): | ||||
|         if 'content-type' in self._req.headers_in and self._req.headers_in['content-type'].startswith('multipart'): | ||||
|             self._post, self._files = http.parse_file_upload(self._req.headers_in, self.raw_post_data) | ||||
|         else: | ||||
|             self._post, self._files = http.QueryDict(self.raw_post_data), datastructures.MultiValueDict() | ||||
|   | ||||
| @@ -103,7 +103,7 @@ class WSGIRequest(http.HttpRequest): | ||||
|         return '%s%s' % (self.path, self.environ.get('QUERY_STRING', '') and ('?' + self.environ.get('QUERY_STRING', '')) or '') | ||||
|  | ||||
|     def is_secure(self): | ||||
|         return self.environ.has_key('HTTPS') and self.environ['HTTPS'] == 'on' | ||||
|         return 'HTTPS' in self.environ and self.environ['HTTPS'] == 'on' | ||||
|  | ||||
|     def _load_post_and_files(self): | ||||
|         # Populates self._post and self._files | ||||
|   | ||||
		Reference in New Issue
	
	Block a user