Changeset 9064
- Timestamp:
- 09/17/08 04:02:25 (4 months ago)
- Files:
-
- django/trunk/django/core/handlers/modpython.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/handlers/modpython.py
r8748 r9064 76 76 def _load_post_and_files(self): 77 77 "Populates self._post and self._files" 78 if self.method != 'POST': 79 self._post, self._files = http.QueryDict('', encoding=self._encoding), datastructures.MultiValueDict() 80 return 81 78 82 if 'content-type' in self._req.headers_in and self._req.headers_in['content-type'].startswith('multipart'): 79 83 self._raw_post_data = ''
