(self)
| 425 | |
| 426 | @property |
| 427 | def POST(self): |
| 428 | # Ensure that request.POST uses our request parsing. |
| 429 | if not _hasattr(self, '_data'): |
| 430 | with wrap_attributeerrors(): |
| 431 | self._load_data_and_files() |
| 432 | if is_form_media_type(self.content_type): |
| 433 | return self._data |
| 434 | return QueryDict('', encoding=self._request._encoding) |
| 435 | |
| 436 | @property |
| 437 | def FILES(self): |
nothing calls this directly
no test coverage detected