Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/db/transaction.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #24921 -- set_autocommit(False) + ORM queries.Aymeric Augustin2015-09-211-7/+0
* Fixed #21803 -- Added support for post-commit callbacksAndreas Pelme2015-06-301-13/+9
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+2
* Replaced set([foo, ...]) by {foo, ...} literals. Refs PR ...Thomas Chaumeny2014-09-281-1/+1
* Factorize some code using ContextDecorator.Thomas Chaumeny2014-08-281-11/+2
* Fixed #23074 -- Avoided leaking savepoints in atomic.Aymeric Augustin2014-07-281-0/+6
* Improved a comment. Thanks intgr for the report.Aymeric Augustin2014-04-111-4/+4
* Increased robustness of 58161e4e. Refs #22291.Aymeric Augustin2014-04-101-2/+8
* Fixed #21202 -- Maintained atomicity when the server disc...Aymeric Augustin2014-04-101-3/+13
* Fixed #21239 -- Maintained atomicity when closing the con...Aymeric Augustin2014-04-101-3/+13
* Fixed #22291 -- Avoided shadowing deadlock exceptions on ...Aymeric Augustin2014-03-231-1/+7
* Removed legacy transaction management per the deprecation...Aymeric Augustin2014-03-211-259/+5
* Fixed #21188 -- Introduced subclasses for to-be-removed-i...Claude Paroz2014-03-081-7/+8
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-1/+1
* Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol2013-10-211-2/+2
* Fixed #21134 -- Prevented queries in broken transactions.Aymeric Augustin2013-09-301-4/+5
* Tested exc_type instead of exc_value in __exit__.Aymeric Augustin2013-09-041-7/+7
* A large number of stylistic cleanups across django/db/Alex Gaynor2013-07-081-0/+26
* Introduced getters for connection.autocommit and .needs_r...Aymeric Augustin2013-06-301-8/+4
* Advanced deprecation warnings for Django 1.7.Aymeric Augustin2013-06-291-7/+7
* Fixed #20571 -- Added an API to control connection.needs_...Aymeric Augustin2013-06-271-0/+20
* Changed API to disable ATOMIC_REQUESTS per view.Aymeric Augustin2013-05-191-0/+17
* Fix typo in transaction.Atomic docstringMarti Raudsepp2013-04-031-1/+1
* Made atomic usable when autocommit is off.Aymeric Augustin2013-03-131-86/+69
* Fixed #20028 -- Made atomic usable on callable instances.Aymeric Augustin2013-03-121-1/+2
* Improved the API of set_autocommit.Aymeric Augustin2013-03-111-1/+1
* Added an option to disable the creation of savepoints in ...Aymeric Augustin2013-03-111-29/+51
* Re-ordered functions by deprecation status.Aymeric Augustin2013-03-111-17/+20
* Implemented atomic_if_autocommit.Aymeric Augustin2013-03-111-4/+22
* Added some assertions to enforce the atomicity of atomic.Aymeric Augustin2013-03-111-2/+16
* Implemented an 'atomic' decorator and context manager.Aymeric Augustin2013-03-111-7/+150
* Deprecated transaction.is_managed().Aymeric Augustin2013-03-111-7/+5
* Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin2013-03-111-8/+19
* Added an API to control database-level autocommit.Aymeric Augustin2013-03-111-0/+12
* Made transaction.managed a no-op and deprecated it.Aymeric Augustin2013-03-111-12/+6
* Factored code and added a missing docstring.Aymeric Augustin2013-02-211-64/+36
* Fixed #19707 -- Reset transaction state after requestsAnssi Kääriäinen2013-02-101-0/+15
* Removed with_statement imports, useless in Python >= 2.6....Claude Paroz2012-03-301-1/+0
* Fixed #16225 -- Removed unused imports. Many thanks to Ay...Jannis Leidel2011-07-131-2/+0
* Fixed #15702 -- Corrected problem in test suite introduce...Russell Keith-Magee2011-03-281-1/+1
* Move the Python 2.5 specific tests out of their own speci...Alex Gaynor2011-03-281-0/+1
* Removed a bunch more Python 2.4 workarounds now that we d...Adrian Holovaty2011-03-281-17/+4
* Changeset r15232 refactored transactions so that all tran...Russell Keith-Magee2011-02-121-80/+15
* Refactor all uses of thread locals to be more consistant ...Alex Gaynor2011-01-171-56/+47
* Fixed #14550 -- fixed the behavior of commit_on_success t...Alex Gaynor2010-10-241-9/+12
* Fixed #10771 -- added support for using the transaction m...Alex Gaynor2010-10-191-60/+84
* Fixed #11509 -- Modified usage of "Web" to match our styl...Russell Keith-Magee2010-10-091-1/+1
* Fixed #12164 -- Removed the Python 2.3 compatibility impo...Russell Keith-Magee2010-05-041-1/+1
* Fixed #11900 -- Corrected an edge case of transaction han...Russell Keith-Magee2010-03-121-1/+5
* Fixed #13055 -- Cleaned up the implementation of transact...Russell Keith-Magee2010-03-101-34/+46