- 09 Eyl, 2015 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
This new technique is more straightforward and compatible with test parallelization, where the effective database connection settings no longer match settings.DATABASES.
-
- 31 Agu, 2015 1 kayıt (commit)
-
-
Maxime Lorant yazdı
-
- 27 Tem, 2015 1 kayıt (commit)
-
-
Flavio Curella yazdı
-
- 06 Şub, 2015 1 kayıt (commit)
-
-
Tim Graham yazdı
-
- 22 Mar, 2014 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
Rewrote the test for #9479 according to the original ticket.
-
- 21 Mar, 2014 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
-
- 26 Ock, 2014 1 kayıt (commit)
-
-
Simon Charette yazdı
It contained models, forms and admin objects causing undesirable import side effects. Refs #16368. Thanks to Ramiro, Carl and Loïc for the review.
-
- 03 Kas, 2013 1 kayıt (commit)
-
-
Jason Myers yazdı
Signed-off-by:
Jason Myers <jason@jasonamyers.com>
-
- 26 Eki, 2013 1 kayıt (commit)
-
-
Alex Gaynor yazdı
-
- 23 Eki, 2013 1 kayıt (commit)
-
-
Alasdair Nicol yazdı
-
- 18 Eki, 2013 1 kayıt (commit)
-
-
Alasdair Nicol yazdı
-
- 09 Eyl, 2013 1 kayıt (commit)
-
-
Florian Apolloner yazdı
-
- 08 Eyl, 2013 1 kayıt (commit)
-
-
Alex Gaynor yazdı
-
- 29 Tem, 2013 1 kayıt (commit)
-
-
Claude Paroz yazdı
Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way.
-
- 10 Haz, 2013 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
Fixed #20483.
-
- 11 Mar, 2013 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
enter_transaction_management() was nearly always followed by managed(). In three places it wasn't, but they will all be refactored eventually. The "forced" keyword argument avoids introducing behavior changes until then. This is mostly backwards-compatible, except, of course, for managed itself. There's a minor difference in _enter_transaction_management: the top self.transaction_state now contains the new 'managed' state rather than the previous one. Django doesn't access self.transaction_state in _enter_transaction_management.
-
- 27 Şub, 2013 1 kayıt (commit)
-
-
Anssi Kääriäinen yazdı
There were a couple of errors in ._dirty flag handling: * It started as None, but was never reset to None. * The _dirty flag was sometimes used to indicate if the connection was inside transaction management, but this was not done consistently. This also meant the flag had three separate values. * The None value had a special meaning, causing for example inability to commit() on new connection unless enter/leave tx management was done. * The _dirty was tracking "connection in transaction" state, but only in managed transactions. * Some tests never reset the transaction state of the used connection. * And some additional less important changes. This commit has some potential for regressions, but as the above list shows, the current situation isn't perfect either.
-
- 26 Şub, 2013 1 kayıt (commit)
-
-
Florian Apolloner yazdı
-