From dc86a25a677d05703e0bb021b178e44412cea7e9 Mon Sep 17 00:00:00 2001 From: Jonny Park Date: Wed, 10 Mar 2021 14:33:52 +0900 Subject: Refs #24121 -- Added __repr__() to MiddlewareMixin and subclasses. --- django/utils/deprecation.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'django/utils') 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 -- cgit v1.3