1 2 3 4 5 6 | def _load_post_and_files(self):
# Populates self._post and self._files
if self.method == 'POST':
...1
else:
self._post, self._files = http.QueryDict('', encoding=self._encoding), datastructures.MultiValueDict()
|