diff --git a/django/db/backends/mysql/base.py b/django/db/backends/mysql/base.py index 27e424f12be..0e5c25fc238 100644 --- a/django/db/backends/mysql/base.py +++ b/django/db/backends/mysql/base.py @@ -89,14 +89,6 @@ class CursorWrapper: def __iter__(self): return iter(self.cursor) - def __enter__(self): - return self - - def __exit__(self, type, value, traceback): - # Close instead of passing through to avoid backend-specific behavior - # (#17671). - self.close() - class DatabaseWrapper(BaseDatabaseWrapper): vendor = 'mysql'