(self)
| 435 | |
| 436 | @property |
| 437 | def FILES(self): |
| 438 | # Leave this one alone for backwards compat with Django's request.FILES |
| 439 | # Different from the other two cases, which are not valid property |
| 440 | # names on the WSGIRequest class. |
| 441 | if not _hasattr(self, '_files'): |
| 442 | with wrap_attributeerrors(): |
| 443 | self._load_data_and_files() |
| 444 | return self._files |
| 445 | |
| 446 | def force_plaintext_errors(self, value): |
| 447 | # Hack to allow our exception handler to force choice of |
nothing calls this directly
no test coverage detected