summaryrefslogtreecommitdiff
path: root/django/db/backends/utils.py
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-03-21 14:21:43 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-03-21 21:06:50 +0100
commit0f9560855e5ed203b8c911c23237826e28a62a38 (patch)
treef62d3cd8b6fb6ac6f3a30282169d762b522d291c /django/db/backends/utils.py
parent907ac646415a911b54d84c5203d4fa78ed1b91d5 (diff)
downloaddjango-0f9560855e5ed203b8c911c23237826e28a62a38.tar.gz
Removed legacy transaction management per the deprecation timeline.
Diffstat (limited to 'django/db/backends/utils.py')
-rw-r--r--django/db/backends/utils.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/utils.py b/django/db/backends/utils.py
index 8bed6415c3..c9f56accc2 100644
--- a/django/db/backends/utils.py
+++ b/django/db/backends/utils.py
@@ -44,7 +44,6 @@ class CursorWrapper(object):
def callproc(self, procname, params=None):
self.db.validate_no_broken_transaction()
- self.db.set_dirty()
with self.db.wrap_database_errors:
if params is None:
return self.cursor.callproc(procname)
@@ -53,7 +52,6 @@ class CursorWrapper(object):
def execute(self, sql, params=None):
self.db.validate_no_broken_transaction()
- self.db.set_dirty()
with self.db.wrap_database_errors:
if params is None:
return self.cursor.execute(sql)
@@ -62,7 +60,6 @@ class CursorWrapper(object):
def executemany(self, sql, param_list):
self.db.validate_no_broken_transaction()
- self.db.set_dirty()
with self.db.wrap_database_errors:
return self.cursor.executemany(sql, param_list)