Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/utils_tests/test_datastructures.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #25093 -- Added ↵darkryder2015-07-101-0/+8
| | | | utils.datastructures.OrderedSet.__len__()
* Removed redundant list() calls.Tim Graham2015-05-161-3/+3
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+4
|
* Removed django.utils.datastructures.SortedDict per ↵Tim Graham2015-01-171-129/+2
| | | | deprecation timeline.
* Removed django.utils.datastructures.MergeDict per ↵Tim Graham2015-01-171-72/+1
| | | | deprecation timeline; refs #18659.
* Applied ignore_warnings to Django testsClaude Paroz2014-12-301-4/+6
|
* Fixed #23620 -- Used more specific assertions in the ↵Berker Peksag2014-11-031-1/+1
| | | | Django test suite.
* Fixed #23664 -- Provided a consistent definition for ↵Thomas Chaumeny2014-10-161-1/+11
| | | | | | OrderedSet.__bool__ This also defines QuerySet.__bool__ for consistency though this should not have any consequence as bool(qs) used to fallback on QuerySet.__len__ in Py3.
* Fixed #22338 -- Fixed a test dependent on dictionary key ↵Tim Graham2014-03-301-1/+1
| | | | iteration order.
* Advanced deprecation warnings for 1.8.Aymeric Augustin2014-03-221-3/+3
|
* Fixed E127 pep8 warnings.Loic Bistuer2013-12-141-14/+22
|
* Fix all violators of E231Alex Gaynor2013-10-261-7/+7
|
* Removed unused local variables in tests.Tim Graham2013-10-191-2/+0
|
* Fixed #18659 -- Deprecated request.REQUEST and MergeDictBouke Haarsma2013-10-171-1/+1
| | | | Thanks Aymeric Augustin for the suggestion.
* Fixed #15625 -- Made message in MultiValueDictKeyError ↵Tim Graham2013-09-181-5/+1
| | | | | | less verbose. Thanks margieroginski for the suggestion.
* Silenced deprecation warnings in SortedDict tests; refs ↵Tim Graham2013-09-031-1/+3
| | | | [07876cf02b]
* Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin2013-09-021-1/+1
|
* Removed insert(), value_for_insert() SortedDict methods ↵Ramiro Morales2013-06-291-15/+0
| | | | deprecated in Django 1.5.
* Fixed #20321 -- Added missing key name in MergeDict ↵Claude Paroz2013-04-261-0/+8
| | | | | | KeyError message Thanks mark.harviston et gmail.com for the report.
* Fixed #20276 -- Implemented __bool__ for MergeDictAnton Baklanov2013-04-191-0/+7
| | | | | MergeDict evaluates now to False if all contained dicts are empty. Thanks til for the report and the initial patch.
* Modified utils_tests for unittest2 discovery.Preston Timmons2013-04-121-0/+306