From 7e0f9095f762a74116b0b4ba0c88267bdf184e0f Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Fri, 21 Mar 2014 22:17:36 +0100 Subject: [PATCH] Removed BaseDatabaseCreation.set_autocommit per deprecation timeline. --- django/db/backends/creation.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/django/db/backends/creation.py b/django/db/backends/creation.py index a2a288a9da..8906d3bc00 100644 --- a/django/db/backends/creation.py +++ b/django/db/backends/creation.py @@ -5,7 +5,6 @@ import warnings from django.conf import settings from django.db.utils import load_backend -from django.utils.deprecation import RemovedInDjango18Warning from django.utils.encoding import force_bytes from django.utils.functional import cached_property from django.utils.six.moves import input @@ -467,17 +466,6 @@ class BaseDatabaseCreation(object): cursor.execute("DROP DATABASE %s" % self.connection.ops.quote_name(test_database_name)) - def set_autocommit(self): - """ - Make sure a connection is in autocommit mode. - Deprecated, not used - anymore by Django code. Kept for compatibility with user code that - might use it. - """ - warnings.warn( - "set_autocommit was moved from BaseDatabaseCreation to " - "BaseDatabaseWrapper.", RemovedInDjango18Warning, stacklevel=2) - return self.connection.set_autocommit(True) - def sql_table_creation_suffix(self): """ SQL to append to the end of the test table creation statements.