diff options
Diffstat (limited to 'django/utils')
| -rw-r--r-- | django/utils/deprecation.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/django/utils/deprecation.py b/django/utils/deprecation.py index 05913ab4ba..08f33fa7d3 100644 --- a/django/utils/deprecation.py +++ b/django/utils/deprecation.py @@ -96,6 +96,16 @@ class MiddlewareMixin: self._async_check() super().__init__() + def __repr__(self): + return '<%s get_response=%s>' % ( + self.__class__.__qualname__, + getattr( + self.get_response, + '__qualname__', + self.get_response.__class__.__name__, + ), + ) + def _async_check(self): """ If get_response is a coroutine function, turns us into async mode so |
