Tim Graham
|
924af638e4
|
Fixed #27683 -- Made MySQL default to the read committed isolation level.
Thanks Shai Berger for test help and Adam Johnson for review.
|
2017-02-01 15:34:17 -05:00 |
Tim Graham
|
c4e18bb1ce
|
Refs #27683 -- Split up MySQL isolation level tests.
|
2017-02-01 13:12:59 -05:00 |
Vytis Banaitis
|
8838d4dd49
|
Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.
|
2017-02-01 11:41:56 -05:00 |
Ling-Xiao Yang
|
0ec4dc91e0
|
Fixed #27661 -- Moved FileSystemFinder's ImproperlyConfigured exceptions to system checks.
Thanks Simon Charette, Mariusz Felisiak, Tim Graham, and Adam Johnson
for review.
|
2017-02-01 09:48:24 -05:00 |
Lex Berezhny
|
ac5f886c56
|
Fixed #27800 -- Fixed QuerySet.annotate(Length(...)).distinct() crash.
|
2017-01-31 18:45:55 -05:00 |
Jon Dufresne
|
6d8979f4c2
|
Fixed #27758 -- Reallowed AdvancedModelIterator pattern after template widget rendering.
|
2017-01-31 09:41:51 -05:00 |
Claude Paroz
|
ccfd1295f9
|
Refs #27795 -- Prevented SafeText from losing safe status on str()
This will allow to replace force_text() by str() in several places (as one of
the features of force_text is to keep the safe status).
|
2017-01-30 21:10:32 +01:00 |
Claude Paroz
|
c182d66f69
|
Reintroduced lazy import from commit 52138b1fd0
|
2017-01-30 15:17:39 +01:00 |
Claude Paroz
|
52138b1fd0
|
Refs #23919 -- Removed usage of obsolete SafeBytes class
The class will be removed as part of #27753.
Thanks Tim Graham for the review.
|
2017-01-30 15:04:45 +01:00 |
Claude Paroz
|
c688336ebc
|
Refs #23919 -- Assumed request COOKIES and META are str
|
2017-01-30 14:13:29 +01:00 |
Claude Paroz
|
068cd60366
|
Removed unneeded parentheses in class definitions
|
2017-01-29 18:06:26 +01:00 |
Tim Graham
|
7d50d2bcb8
|
Refs #27790 -- Reverted "Removed available_apps on TestCase subclasses."
This reverts commit 91023d79ec as it
increases memory usage for the test suite.
|
2017-01-28 10:01:13 -05:00 |
Tim Graham
|
0de0699d94
|
Fixed #27788 -- Dropped support for Oracle < 12.1.
|
2017-01-28 08:19:47 -05:00 |
Tim Graham
|
9e9e73735e
|
Refs #23919 -- Removed an obsolete test for a Python 2 code path (refs #15662).
Fixed #21628 by removing the last usage of the imp module.
|
2017-01-27 17:39:49 -05:00 |
Anton Samarchyan
|
56ea394dfd
|
Improved test coverage for conf.urls.static.
|
2017-01-27 16:12:09 -05:00 |
Ed Morley
|
751d77cdd9
|
Refs #27537 -- Added default_addr(_ipv6) attributes to runserver command.
|
2017-01-27 13:30:27 -05:00 |
Anton Samarchyan
|
0cbfc844a3
|
Improved test coverage and error messages for conf.urls.__init__.
|
2017-01-27 13:16:55 -05:00 |
Anton Samarchyan
|
110f4bb6a2
|
Tested AppConfig.__repr__().
|
2017-01-27 09:55:08 -05:00 |
Mariusz Felisiak
|
c37ec5a659
|
Fixed #27781 -- Made simplify_regex() remove outstanding '?' characters.
Regression in f0ef0c49e9 .
|
2017-01-26 18:36:34 -05:00 |
Chillar Anand
|
6478e07a62
|
Refs #23919 -- Replaced tempfile.mkdtemp() with TemporaryDirectory() context manager.
|
2017-01-26 13:54:16 -05:00 |
Claude Paroz
|
fee42fd99e
|
Refs #23919 -- Replaced usage of django.utils.http utilities with Python equivalents
Thanks Tim Graham for the review.
|
2017-01-26 19:49:03 +01:00 |
Vytis Banaitis
|
d1bab24e01
|
Refs #23919, #27778 -- Removed obsolete mentions of unicode.
|
2017-01-26 08:19:27 -05:00 |
Tim Graham
|
888c1e9bfe
|
Fixed #27776 -- Merged tests/requirements/base.txt into py3.txt.
|
2017-01-25 16:26:59 -05:00 |
Tim Graham
|
1c466994d9
|
Refs #23919 -- Removed misc Python 2/3 references.
|
2017-01-25 13:59:25 -05:00 |
Tim Graham
|
11856ea44e
|
Refs #27741 -- Fixed staticfiles_tests.test_views when run in isolation.
|
2017-01-25 13:53:38 -05:00 |
Ed Morley
|
bfd42392ab
|
Simplified tests with assertDoesNotOptimize().
|
2017-01-25 13:52:44 -05:00 |
chillaranand
|
d6eaf7c018
|
Refs #23919 -- Replaced super(ClassName, self) with super().
|
2017-01-25 12:23:46 -05:00 |
Tim Graham
|
632c4ffd9c
|
Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.
|
2017-01-25 10:13:08 -05:00 |
Mads Jensen
|
ebf34c3cdc
|
Removed unused variables that are overwritten.
|
2017-01-25 09:14:05 -05:00 |
Claude Paroz
|
2366100872
|
Removed unneeded force_text calls in the test suite
|
2017-01-24 18:45:54 +01:00 |
Tim Graham
|
a87d6b69a7
|
Tidied djang.db.utils.load_backend().
Removed an unneeded EnvironmentError catching and used
"raise from exc" syntax.
|
2017-01-24 08:33:26 -05:00 |
Jon Dufresne
|
0d74c41981
|
Replaced dict() usage with dict literals.
Literals are faster and more idiomatic.
|
2017-01-23 19:13:49 -05:00 |
Jon Dufresne
|
5fa390ee81
|
Fixed #27759 -- Prevented forms attrs.html template from rendering False attrs.
Regression in b52c73008a .
|
2017-01-23 08:49:00 -05:00 |
Jon Dufresne
|
88183117c2
|
Fixed #27761 -- Fixed quote location in multiple_input.html forms templates.
|
2017-01-23 07:44:57 -05:00 |
Claude Paroz
|
6e55e1d88a
|
Refs #23919 -- Replaced six.reraise by raise
|
2017-01-22 20:08:04 +01:00 |
Tim Graham
|
d170c63351
|
Refs #23919 -- Removed misc references to Python 2.
|
2017-01-21 20:02:00 -05:00 |
Mariusz Felisiak
|
c22212220a
|
Refs #23919 -- Removed re.U and re.UNICODE (default on Python 3).
|
2017-01-21 14:28:16 -05:00 |
Tim Graham
|
8249c5b382
|
Added a missing floatformat test and simplified another.
|
2017-01-21 13:06:52 -05:00 |
Claude Paroz
|
289fc1bfa5
|
Refs #23919 -- Removed str_prefix usage
|
2017-01-20 15:43:28 +01:00 |
Tim Graham
|
7aba69145d
|
Refs #23919 -- Removed django.test.mock Python 2 compatibility shim.
|
2017-01-20 08:17:20 -05:00 |
Claude Paroz
|
042b7350a0
|
Refs #23919 -- Removed unneeded str() calls
|
2017-01-20 14:13:55 +01:00 |
Tim Graham
|
4e729feaa6
|
Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.
These functions do nothing on Python 3.
|
2017-01-20 08:01:02 -05:00 |
Tim Graham
|
109b33f64c
|
Refs #23919 -- Simplified assertRaisesRegex()'s that accounted for Python 2.
|
2017-01-20 08:49:47 +01:00 |
Claude Paroz
|
dc8834cad4
|
Refs #23919 -- Removed unneeded force_str calls
|
2017-01-20 08:44:31 +01:00 |
Srinivas Reddy Thatiparthy
|
eb0b921c29
|
Refs #23919 -- Removed SessionBase.iterkeys(), itervalues(), iteritems().
These methods only work on Python 2.
|
2017-01-19 14:15:00 -05:00 |
Tim Graham
|
9ee47ce7b4
|
Refs #23919 -- Removed enum ImportError handling for Python 2.
|
2017-01-19 13:55:20 -05:00 |
Simon Charette
|
9695b14982
|
Refs #23919 -- Removed str() conversion of type and method __name__.
|
2017-01-19 11:31:07 -05:00 |
Simon Charette
|
4c5ed3e683
|
Refs #23919 -- Removed __nonzero__() methods (for Python 2).
Thanks Tim for the review.
|
2017-01-19 11:26:26 -05:00 |
Tim Graham
|
e5c67f0991
|
Refs #23919 -- Removed reset_warning_registry() workaround for Python < 3.4.2.
|
2017-01-19 10:56:00 -05:00 |
Tim Graham
|
5320fa77c3
|
Refs #23919 -- Removed obsolete contextlib.closing() calls (for Python 2).
|
2017-01-19 08:50:28 -05:00 |