summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/forms/hstore.py
Commit message (Collapse)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-7/+8
|
* Refs #27857 -- Replaced json.loads() ValueError exception catching with ↵Tim Graham2017-09-251-1/+1
| | | | JSONDecodeError.
* Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz2017-02-071-1/+1
| | | | Thanks Tim Graham for the review.
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-1/+1
|
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-2/+1
| | | | Thanks Tim Graham and Simon Charette for the reviews.
* Fixed #27582 -- Allowed HStoreField to store null values.David Hoffman2016-12-151-1/+3
|
* Fixed #26672 -- Fixed HStoreField to raise ValidationError instead of ↵Brad Melin2016-06-021-1/+11
| | | | crashing on non-dict JSON input.
* Fixed #25233 -- Fixed HStoreField.has_changed() handling of initial values.Tim Graham2015-08-071-7/+8
| | | | Thanks Simon Charette for review.
* Fixed #25215 -- Solved reference to forms.HStoreField in declaration of ↵Curtis Maloney2015-08-041-1/+1
| | | | | | HStoreField Correct test which was using the model field in a test form.
* Fixed #24844 -- Corrected has_changed implementation for HStoreField.Andrea Grandi2015-05-241-0/+10
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+0
|
* Added HStoreField.Marc Tamlyn2014-11-041-0/+37
Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.