index
:
django.git
fix-31295
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
utils_tests
/
test_datastructures.py
Age
Commit message (
Expand
)
Author
2020-10-30
Updated MultiValueDict.update() to mirror dict.update() behavior.
Nick Pope
2020-10-30
Increased test coverage for django.utils.datastructures.MultiValueDict.
Nick Pope
2020-10-30
Increased test coverage for django.utils.datastructures.OrderedSet.
Mads Jensen
2020-02-07
Used assertRaisesMessage() in various tests.
Hasan Ramezani
2019-02-09
Removed unneeded list() calls in sorted() argument.
Sergey Fedoseev
2019-01-16
Fixed #20147 -- Added HttpRequest.headers.
Santiago Basulto
2019-01-02
Used 4 space hanging indent for dictionaries.
Tim Graham
2017-05-27
Fixed #28249 -- Removed unnecessary dict.keys() calls.
Jon Dufresne
2017-04-11
Fixed #28064 -- Removed double-quoting of key names in MultiValueDictKeyError.
petedmarsh
2017-01-18
Refs #23919 -- Removed most of remaining six usage
Claude Paroz
2016-12-09
Fixed #27583 -- Fixed MultiValueDict.getlist() crash when values for key is N...
Mariusz Felisiak
2016-09-16
Fixed #27198 -- Made MultiValueDict.getlist() return a new list to prevent mu...
Jani Tiainen
2016-06-16
Fixed #26747 -- Used more specific assertions in the Django test suite.
Jon Dufresne
2016-01-29
Refs #26022 -- Replaced six.assertRaisesRegex with assertRaisesMessage as app...
Hasan
2016-01-29
Refs #26022 -- Used context manager version of assertRaisesMessage in tests.
Hasan
2016-01-25
Fixed #26125 -- Fixed E731 flake warnings.
userimack
2015-07-09
Fixed #25093 -- Added utils.datastructures.OrderedSet.__len__()
darkryder
2015-05-16
Removed redundant list() calls.
Tim Graham
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2015-01-17
Removed django.utils.datastructures.SortedDict per deprecation timeline.
Tim Graham
2015-01-17
Removed django.utils.datastructures.MergeDict per deprecation timeline; refs ...
Tim Graham
2014-12-30
Applied ignore_warnings to Django tests
Claude Paroz
2014-11-03
Fixed #23620 -- Used more specific assertions in the Django test suite.
Berker Peksag
2014-10-16
Fixed #23664 -- Provided a consistent definition for OrderedSet.__bool__
Thomas Chaumeny
2014-03-30
Fixed #22338 -- Fixed a test dependent on dictionary key iteration order.
Tim Graham
2014-03-22
Advanced deprecation warnings for 1.8.
Aymeric Augustin
2013-12-14
Fixed E127 pep8 warnings.
Loic Bistuer
2013-10-26
Fix all violators of E231
Alex Gaynor
2013-10-19
Removed unused local variables in tests.
Tim Graham
2013-10-17
Fixed #18659 -- Deprecated request.REQUEST and MergeDict
Bouke Haarsma
2013-09-18
Fixed #15625 -- Made message in MultiValueDictKeyError less verbose.
Tim Graham
2013-09-03
Silenced deprecation warnings in SortedDict tests; refs [07876cf02b]
Tim Graham
2013-09-02
Replaced "not PY3" by "PY2", new in six 1.4.0.
Aymeric Augustin
2013-06-28
Removed insert(), value_for_insert() SortedDict methods deprecated in Django ...
Ramiro Morales
2013-04-26
Fixed #20321 -- Added missing key name in MergeDict KeyError message
Claude Paroz
2013-04-19
Fixed #20276 -- Implemented __bool__ for MergeDict
Anton Baklanov
2013-04-12
Modified utils_tests for unittest2 discovery.
Preston Timmons