summaryrefslogtreecommitdiff
path: root/django/db/transaction.py
AgeCommit message (Expand)Author
2017-04-19[1.11.x] Fix a typo in django/db/transaction.pyHuang Zhiqiang
2015-09-21Fixed #24921 -- set_autocommit(False) + ORM queries.Aymeric Augustin
2015-06-30Fixed #21803 -- Added support for post-commit callbacksAndreas Pelme
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-09-29Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny
2014-08-28Factorize some code using ContextDecorator.Thomas Chaumeny
2014-07-28Fixed #23074 -- Avoided leaking savepoints in atomic.Aymeric Augustin
2014-04-11Improved a comment. Thanks intgr for the report.Aymeric Augustin
2014-04-10Increased robustness of 58161e4e. Refs #22291.Aymeric Augustin
2014-04-10Fixed #21202 -- Maintained atomicity when the server disconnects.Aymeric Augustin
2014-04-10Fixed #21239 -- Maintained atomicity when closing the connection.Aymeric Augustin
2014-03-23Fixed #22291 -- Avoided shadowing deadlock exceptions on MySQL.Aymeric Augustin
2014-03-21Removed legacy transaction management per the deprecation timeline.Aymeric Augustin
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2013-10-21Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol
2013-09-30Fixed #21134 -- Prevented queries in broken transactions.Aymeric Augustin
2013-09-04Tested exc_type instead of exc_value in __exit__.Aymeric Augustin
2013-07-08A large number of stylistic cleanups across django/db/Alex Gaynor
2013-06-30Introduced getters for connection.autocommit and .needs_rollback.Aymeric Augustin
2013-06-29Advanced deprecation warnings for Django 1.7.Aymeric Augustin
2013-06-27Fixed #20571 -- Added an API to control connection.needs_rollback.Aymeric Augustin
2013-05-19Changed API to disable ATOMIC_REQUESTS per view.Aymeric Augustin
2013-04-03Fix typo in transaction.Atomic docstringMarti Raudsepp
2013-03-13Made atomic usable when autocommit is off.Aymeric Augustin
2013-03-12Fixed #20028 -- Made atomic usable on callable instances.Aymeric Augustin
2013-03-11Improved the API of set_autocommit.Aymeric Augustin
2013-03-11Added an option to disable the creation of savepoints in atomic.Aymeric Augustin
2013-03-11Re-ordered functions by deprecation status.Aymeric Augustin
2013-03-11Implemented atomic_if_autocommit.Aymeric Augustin
2013-03-11Added some assertions to enforce the atomicity of atomic.Aymeric Augustin
2013-03-11Implemented an 'atomic' decorator and context manager.Aymeric Augustin
2013-03-11Deprecated transaction.is_managed().Aymeric Augustin
2013-03-11Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin
2013-03-11Added an API to control database-level autocommit.Aymeric Augustin
2013-03-11Made transaction.managed a no-op and deprecated it.Aymeric Augustin
2013-02-21Factored code and added a missing docstring.Aymeric Augustin
2013-02-10Fixed #19707 -- Reset transaction state after requestsAnssi Kääriäinen
2012-03-30Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks...Claude Paroz
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-03-28Fixed #15702 -- Corrected problem in test suite introduced by Python 2.4 chan...Russell Keith-Magee
2011-03-28Move the Python 2.5 specific tests out of their own special files now that 2....Alex Gaynor
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-02-12Changeset r15232 refactored transactions so that all transaction state is mai...Russell Keith-Magee
2011-01-17Refactor all uses of thread locals to be more consistant and sane.Alex Gaynor
2010-10-24Fixed #14550 -- fixed the behavior of commit_on_success to exit the transacti...Alex Gaynor
2010-10-19Fixed #10771 -- added support for using the transaction management functions ...Alex Gaynor
2010-10-09Fixed #11509 -- Modified usage of "Web" to match our style guide in various d...Russell Keith-Magee
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-03-12Fixed #11900 -- Corrected an edge case of transaction handling in the commit_...Russell Keith-Magee